@d19n/youfibre-odin-sdk 2.0.13 → 2.0.14
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/README.md +22 -1621
- package/dist/EntityRegistry.d.ts +27 -245
- package/dist/EntityRegistry.js +33 -251
- package/dist/OdinApiClient.d.ts +72 -508
- package/dist/OdinApiClient.js +124 -996
- package/dist/OdinDbClient.d.ts +82 -518
- package/dist/OdinDbClient.js +121 -993
- package/dist/accessors-v2/ConfigAccessor.d.ts +111 -111
- package/dist/accessors-v2/ConfigAccessor.js +190 -190
- package/dist/accessors-v2/{CampaignAccessor.d.ts → EmployeeAccessor.d.ts} +111 -111
- package/dist/accessors-v2/{TimeSlotAccessor.js → EmployeeAccessor.js} +190 -190
- package/dist/accessors-v2/{OrderItemAccessor.d.ts → ProjectAccessor.d.ts} +111 -111
- package/dist/accessors-v2/{ContactAccessor.js → ProjectAccessor.js} +190 -190
- package/dist/accessors-v2/{CaseAccessor.d.ts → TaskAccessor.d.ts} +111 -111
- package/dist/accessors-v2/{CaseAccessor.js → TaskAccessor.js} +190 -190
- package/dist/accessors-v2/{EmailAccessor.d.ts → TestAccessor.d.ts} +111 -111
- package/dist/accessors-v2/{TeamAccessor.js → TestAccessor.js} +190 -190
- package/dist/accessors-v2/index.d.ts +13 -122
- package/dist/accessors-v2/index.js +21 -241
- package/dist/actions-v2/AssignTeamToProjectDto.d.ts +68 -0
- package/dist/actions-v2/AssignTeamToProjectDto.js +61 -0
- package/dist/actions-v2/CreateAFullTimeEmployeeDto.d.ts +105 -0
- package/dist/actions-v2/CreateAFullTimeEmployeeDto.js +59 -0
- package/dist/actions-v2/CreateAPartTimeEmployeeDto.d.ts +105 -0
- package/dist/actions-v2/CreateAPartTimeEmployeeDto.js +59 -0
- package/dist/actions-v2/CreateConfigDto.d.ts +78 -76
- package/dist/actions-v2/CreateConfigDto.js +58 -56
- package/dist/actions-v2/CreateProjectDto.d.ts +79 -0
- package/dist/actions-v2/CreateProjectDto.js +59 -0
- package/dist/actions-v2/CreateTaskDto.d.ts +86 -0
- package/dist/actions-v2/CreateTaskDto.js +59 -0
- package/dist/actions-v2/DeleteProjectDto.d.ts +13 -0
- package/dist/actions-v2/DeleteProjectDto.js +14 -0
- package/dist/actions-v2/TestingActionNameDto.d.ts +62 -0
- package/dist/actions-v2/TestingActionNameDto.js +58 -0
- package/dist/actions-v2/TransiationTaskFromBacklogToToDoDto.d.ts +69 -0
- package/dist/actions-v2/TransiationTaskFromBacklogToToDoDto.js +61 -0
- package/dist/actions-v2/TransitionProjectFromBacklogToPlannedDto.d.ts +64 -0
- package/dist/actions-v2/TransitionProjectFromBacklogToPlannedDto.js +56 -0
- package/dist/actions-v2/UpdateProjectDto.d.ts +86 -0
- package/dist/actions-v2/UpdateProjectDto.js +56 -0
- package/dist/api-sdk-v2/ActivityApi.d.ts +45 -66
- package/dist/api-sdk-v2/ActivityApi.js +151 -209
- package/dist/api-sdk-v2/ActivityLogApi.d.ts +45 -56
- package/dist/api-sdk-v2/ActivityLogApi.js +151 -179
- package/dist/api-sdk-v2/ConfigApi.d.ts +45 -45
- package/dist/api-sdk-v2/ConfigApi.js +151 -151
- package/dist/api-sdk-v2/{OrderKciApi.d.ts → EmployeeApi.d.ts} +48 -48
- package/dist/api-sdk-v2/{OltSnapshotApi.js → EmployeeApi.js} +155 -155
- package/dist/api-sdk-v2/ProjectApi.d.ts +48 -52
- package/dist/api-sdk-v2/ProjectApi.js +155 -167
- package/dist/api-sdk-v2/TaskApi.d.ts +48 -52
- package/dist/api-sdk-v2/TaskApi.js +155 -167
- package/dist/api-sdk-v2/{SupportTaskApi.d.ts → TestApi.d.ts} +48 -48
- package/dist/api-sdk-v2/{TimeSlotApi.js → TestApi.js} +155 -155
- package/dist/db-accessors-v2/ConfigDbAccessor.d.ts +149 -149
- package/dist/db-accessors-v2/ConfigDbAccessor.js +227 -227
- package/dist/db-accessors-v2/{CampaignDbAccessor.d.ts → EmployeeDbAccessor.d.ts} +149 -149
- package/dist/db-accessors-v2/{TimeSlotDbAccessor.js → EmployeeDbAccessor.js} +227 -227
- package/dist/db-accessors-v2/{AccountDbAccessor.d.ts → ProjectDbAccessor.d.ts} +149 -149
- package/dist/db-accessors-v2/{PaymentDbAccessor.js → ProjectDbAccessor.js} +227 -227
- package/dist/db-accessors-v2/{CaseDbAccessor.d.ts → TaskDbAccessor.d.ts} +149 -149
- package/dist/db-accessors-v2/{NoteDbAccessor.js → TaskDbAccessor.js} +227 -227
- package/dist/db-accessors-v2/{FileDbAccessor.d.ts → TestDbAccessor.d.ts} +149 -149
- package/dist/db-accessors-v2/{TeamDbAccessor.js → TestDbAccessor.js} +227 -227
- package/dist/db-accessors-v2/index.d.ts +14 -123
- package/dist/db-accessors-v2/index.js +22 -242
- package/dist/db-sdk-v2/ActivityDb.d.ts +117 -138
- package/dist/db-sdk-v2/ActivityDb.js +200 -258
- package/dist/db-sdk-v2/ActivityLogDb.d.ts +117 -128
- package/dist/db-sdk-v2/ActivityLogDb.js +200 -228
- package/dist/db-sdk-v2/ConfigDb.d.ts +117 -117
- package/dist/db-sdk-v2/ConfigDb.js +200 -200
- package/dist/db-sdk-v2/{OrderKciDb.d.ts → EmployeeDb.d.ts} +120 -120
- package/dist/db-sdk-v2/{OrderKciDb.js → EmployeeDb.js} +204 -204
- package/dist/db-sdk-v2/ProjectDb.d.ts +120 -124
- package/dist/db-sdk-v2/ProjectDb.js +204 -216
- package/dist/db-sdk-v2/TaskDb.d.ts +120 -124
- package/dist/db-sdk-v2/TaskDb.js +204 -216
- package/dist/db-sdk-v2/{TeamDb.d.ts → TestDb.d.ts} +120 -128
- package/dist/db-sdk-v2/{TimeSlotDb.js → TestDb.js} +204 -204
- package/dist/entities-v2/Activity.d.ts +65 -389
- package/dist/entities-v2/Activity.js +63 -159
- package/dist/entities-v2/ActivityLog.d.ts +65 -142
- package/dist/entities-v2/ActivityLog.js +63 -104
- package/dist/entities-v2/Config.d.ts +79 -87
- package/dist/entities-v2/Config.js +67 -70
- package/dist/entities-v2/Employee.d.ts +207 -0
- package/dist/entities-v2/Employee.js +92 -0
- package/dist/entities-v2/Project.d.ts +131 -214
- package/dist/entities-v2/Project.js +113 -137
- package/dist/entities-v2/Task.d.ts +145 -214
- package/dist/entities-v2/Task.js +127 -137
- package/dist/entities-v2/Test.d.ts +81 -0
- package/dist/entities-v2/Test.js +71 -0
- package/dist/index.d.ts +29 -29
- package/dist/index.js +53 -53
- package/dist/records-v2/ConfigRecord.d.ts +184 -221
- package/dist/records-v2/ConfigRecord.js +243 -298
- package/dist/records-v2/{WorkOrderStatusUpdateRecord.d.ts → EmployeeRecord.d.ts} +266 -237
- package/dist/records-v2/{WorkOrderStatusUpdateRecord.js → EmployeeRecord.js} +348 -312
- package/dist/records-v2/{ReturnsRecord.d.ts → ProjectRecord.d.ts} +261 -281
- package/dist/records-v2/{PgContactRecord.js → ProjectRecord.js} +357 -353
- package/dist/records-v2/{EmailSenderRecord.d.ts → TaskRecord.d.ts} +230 -233
- package/dist/records-v2/{ScheduleSlotRecord.js → TaskRecord.js} +312 -312
- package/dist/records-v2/{OrderKciRecord.d.ts → TestRecord.d.ts} +205 -205
- package/dist/records-v2/{PgWebhookAttemptRecord.js → TestRecord.js} +280 -280
- package/dist/records-v2/index.d.ts +16 -125
- package/dist/records-v2/index.js +29 -360
- package/dist/runner.d.ts +28 -28
- package/dist/runner.js +271 -271
- package/dist/types-v1/Types.d.ts +149 -149
- package/dist/types-v1/Types.js +153 -153
- package/package.json +26 -26
- package/dist/accessors-v2/AccountAccessor.d.ts +0 -111
- package/dist/accessors-v2/AccountAccessor.js +0 -190
- package/dist/accessors-v2/AccountCreditAccessor.d.ts +0 -111
- package/dist/accessors-v2/AccountCreditAccessor.js +0 -190
- package/dist/accessors-v2/ActivityAccessor.d.ts +0 -111
- package/dist/accessors-v2/ActivityAccessor.js +0 -190
- package/dist/accessors-v2/ActivityLogAccessor.d.ts +0 -111
- package/dist/accessors-v2/ActivityLogAccessor.js +0 -190
- package/dist/accessors-v2/AddressAccessor.d.ts +0 -111
- package/dist/accessors-v2/AddressAccessor.js +0 -190
- package/dist/accessors-v2/AffiliateCodeAccessor.d.ts +0 -111
- package/dist/accessors-v2/AffiliateCodeAccessor.js +0 -190
- package/dist/accessors-v2/AppointmentAccessor.d.ts +0 -111
- package/dist/accessors-v2/AppointmentAccessor.js +0 -190
- package/dist/accessors-v2/BillingAdjustmentAccessor.d.ts +0 -111
- package/dist/accessors-v2/BillingAdjustmentAccessor.js +0 -190
- package/dist/accessors-v2/BillingRequestAccessor.d.ts +0 -111
- package/dist/accessors-v2/BillingRequestAccessor.js +0 -190
- package/dist/accessors-v2/BlockageA55Accessor.d.ts +0 -111
- package/dist/accessors-v2/BlockageA55Accessor.js +0 -190
- package/dist/accessors-v2/BrskEntityMigrationErrorAccessor.d.ts +0 -111
- package/dist/accessors-v2/BrskEntityMigrationErrorAccessor.js +0 -190
- package/dist/accessors-v2/CallAccessor.d.ts +0 -111
- package/dist/accessors-v2/CallAccessor.js +0 -190
- package/dist/accessors-v2/CallEventAccessor.d.ts +0 -111
- package/dist/accessors-v2/CallEventAccessor.js +0 -190
- package/dist/accessors-v2/CallLegAccessor.d.ts +0 -111
- package/dist/accessors-v2/CallLegAccessor.js +0 -190
- package/dist/accessors-v2/CallTransferAccessor.d.ts +0 -111
- package/dist/accessors-v2/CallTransferAccessor.js +0 -190
- package/dist/accessors-v2/CampaignAccessor.js +0 -190
- package/dist/accessors-v2/ChangeReasonAccessor.d.ts +0 -111
- package/dist/accessors-v2/ChangeReasonAccessor.js +0 -190
- package/dist/accessors-v2/ChurnRequestAccessor.d.ts +0 -111
- package/dist/accessors-v2/ChurnRequestAccessor.js +0 -190
- package/dist/accessors-v2/ContactAccessor.d.ts +0 -111
- package/dist/accessors-v2/ContractBuyOutAccessor.d.ts +0 -111
- package/dist/accessors-v2/ContractBuyOutAccessor.js +0 -190
- package/dist/accessors-v2/ConversationAccessor.d.ts +0 -111
- package/dist/accessors-v2/ConversationAccessor.js +0 -190
- package/dist/accessors-v2/ConversationFeedbackAccessor.d.ts +0 -111
- package/dist/accessors-v2/ConversationFeedbackAccessor.js +0 -190
- package/dist/accessors-v2/CreditNoteAccessor.d.ts +0 -111
- package/dist/accessors-v2/CreditNoteAccessor.js +0 -190
- package/dist/accessors-v2/CrmDatasetAccessor.d.ts +0 -111
- package/dist/accessors-v2/CrmDatasetAccessor.js +0 -190
- package/dist/accessors-v2/CustomerDeviceAtaAccessor.d.ts +0 -111
- package/dist/accessors-v2/CustomerDeviceAtaAccessor.js +0 -190
- package/dist/accessors-v2/CustomerDeviceConfigurationAccessor.d.ts +0 -111
- package/dist/accessors-v2/CustomerDeviceConfigurationAccessor.js +0 -190
- package/dist/accessors-v2/CustomerDeviceOntAccessor.d.ts +0 -111
- package/dist/accessors-v2/CustomerDeviceOntAccessor.js +0 -190
- package/dist/accessors-v2/CustomerDeviceRouterAccessor.d.ts +0 -111
- package/dist/accessors-v2/CustomerDeviceRouterAccessor.js +0 -190
- package/dist/accessors-v2/CustomerPhonePortingAccessor.d.ts +0 -111
- package/dist/accessors-v2/CustomerPhonePortingAccessor.js +0 -190
- package/dist/accessors-v2/DiscountAccessor.d.ts +0 -111
- package/dist/accessors-v2/DiscountAccessor.js +0 -190
- package/dist/accessors-v2/EmailAccessor.js +0 -190
- package/dist/accessors-v2/EmailSenderAccessor.d.ts +0 -111
- package/dist/accessors-v2/EmailSenderAccessor.js +0 -190
- package/dist/accessors-v2/EmailTemplateAccessor.d.ts +0 -111
- package/dist/accessors-v2/EmailTemplateAccessor.js +0 -190
- package/dist/accessors-v2/FieldServiceDispatchedProductAccessor.d.ts +0 -111
- package/dist/accessors-v2/FieldServiceDispatchedProductAccessor.js +0 -190
- package/dist/accessors-v2/FieldServiceProductAccessor.d.ts +0 -111
- package/dist/accessors-v2/FieldServiceProductAccessor.js +0 -190
- package/dist/accessors-v2/FileAccessor.d.ts +0 -111
- package/dist/accessors-v2/FileAccessor.js +0 -190
- package/dist/accessors-v2/ImpersonationTrackerAccessor.d.ts +0 -111
- package/dist/accessors-v2/ImpersonationTrackerAccessor.js +0 -190
- package/dist/accessors-v2/InternalInstallAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/InternalInstallAuditAccessor.js +0 -190
- package/dist/accessors-v2/InvoiceAccessor.d.ts +0 -111
- package/dist/accessors-v2/InvoiceAccessor.js +0 -190
- package/dist/accessors-v2/InvoiceItemAccessor.d.ts +0 -111
- package/dist/accessors-v2/InvoiceItemAccessor.js +0 -190
- package/dist/accessors-v2/KnowledgeArticleAccessor.d.ts +0 -111
- package/dist/accessors-v2/KnowledgeArticleAccessor.js +0 -190
- package/dist/accessors-v2/LeadAccessor.d.ts +0 -111
- package/dist/accessors-v2/LeadAccessor.js +0 -190
- package/dist/accessors-v2/MessageAccessor.d.ts +0 -111
- package/dist/accessors-v2/MessageAccessor.js +0 -190
- package/dist/accessors-v2/NetworkDeviceAccessor.d.ts +0 -111
- package/dist/accessors-v2/NetworkDeviceAccessor.js +0 -190
- package/dist/accessors-v2/NoteAccessor.d.ts +0 -111
- package/dist/accessors-v2/NoteAccessor.js +0 -190
- package/dist/accessors-v2/OfferAccessor.d.ts +0 -111
- package/dist/accessors-v2/OfferAccessor.js +0 -190
- package/dist/accessors-v2/OhAuditOfInstallationAccessor.d.ts +0 -111
- package/dist/accessors-v2/OhAuditOfInstallationAccessor.js +0 -190
- package/dist/accessors-v2/OhExternalAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/OhExternalAuditAccessor.js +0 -190
- package/dist/accessors-v2/OhInProgressAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/OhInProgressAuditAccessor.js +0 -190
- package/dist/accessors-v2/OhInstallationAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/OhInstallationAuditAccessor.js +0 -190
- package/dist/accessors-v2/OhRetroAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/OhRetroAuditAccessor.js +0 -190
- package/dist/accessors-v2/OneTouchSwitchAccessor.d.ts +0 -111
- package/dist/accessors-v2/OneTouchSwitchAccessor.js +0 -190
- package/dist/accessors-v2/OntReplacementApprovalAccessor.d.ts +0 -111
- package/dist/accessors-v2/OntReplacementApprovalAccessor.js +0 -190
- package/dist/accessors-v2/OrderAccessor.d.ts +0 -111
- package/dist/accessors-v2/OrderAccessor.js +0 -190
- package/dist/accessors-v2/OrderCheckAccessor.d.ts +0 -111
- package/dist/accessors-v2/OrderCheckAccessor.js +0 -190
- package/dist/accessors-v2/OrderItemAccessor.js +0 -190
- package/dist/accessors-v2/OrderKciAccessor.d.ts +0 -111
- package/dist/accessors-v2/OrderKciAccessor.js +0 -190
- package/dist/accessors-v2/OutageAccessor.d.ts +0 -111
- package/dist/accessors-v2/OutageAccessor.js +0 -190
- package/dist/accessors-v2/OverlayRealA55Accessor.d.ts +0 -111
- package/dist/accessors-v2/OverlayRealA55Accessor.js +0 -190
- package/dist/accessors-v2/PICRequestAccessor.d.ts +0 -111
- package/dist/accessors-v2/PICRequestAccessor.js +0 -190
- package/dist/accessors-v2/PaymentAccessor.d.ts +0 -111
- package/dist/accessors-v2/PaymentAccessor.js +0 -190
- package/dist/accessors-v2/PaymentMethodAccessor.d.ts +0 -111
- package/dist/accessors-v2/PaymentMethodAccessor.js +0 -190
- package/dist/accessors-v2/PaymentMethodRefundAccessor.d.ts +0 -111
- package/dist/accessors-v2/PaymentMethodRefundAccessor.js +0 -190
- package/dist/accessors-v2/PermissionToFailAccessor.d.ts +0 -111
- package/dist/accessors-v2/PermissionToFailAccessor.js +0 -190
- package/dist/accessors-v2/PgAccountValidationAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgAccountValidationAccessor.js +0 -190
- package/dist/accessors-v2/PgContactAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgContactAccessor.js +0 -190
- package/dist/accessors-v2/PgDirectDebitFileAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgDirectDebitFileAccessor.js +0 -190
- package/dist/accessors-v2/PgDisputeAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgDisputeAccessor.js +0 -190
- package/dist/accessors-v2/PgFileAllocationAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgFileAllocationAccessor.js +0 -190
- package/dist/accessors-v2/PgLogAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgLogAccessor.js +0 -190
- package/dist/accessors-v2/PgPaymentMethodAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgPaymentMethodAccessor.js +0 -190
- package/dist/accessors-v2/PgSortCodeSubstitutionAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgSortCodeSubstitutionAccessor.js +0 -190
- package/dist/accessors-v2/PgTransactionAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgTransactionAccessor.js +0 -190
- package/dist/accessors-v2/PgVocalinkAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgVocalinkAccessor.js +0 -190
- package/dist/accessors-v2/PgWebhookAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgWebhookAccessor.js +0 -190
- package/dist/accessors-v2/PgWebhookAttemptAccessor.d.ts +0 -111
- package/dist/accessors-v2/PgWebhookAttemptAccessor.js +0 -190
- package/dist/accessors-v2/PhoneNumberAccessor.d.ts +0 -111
- package/dist/accessors-v2/PhoneNumberAccessor.js +0 -190
- package/dist/accessors-v2/PriceBookAccessor.d.ts +0 -111
- package/dist/accessors-v2/PriceBookAccessor.js +0 -190
- package/dist/accessors-v2/ProductAccessor.d.ts +0 -111
- package/dist/accessors-v2/ProductAccessor.js +0 -190
- package/dist/accessors-v2/PushNotificationAccessor.d.ts +0 -111
- package/dist/accessors-v2/PushNotificationAccessor.js +0 -190
- package/dist/accessors-v2/ReferralAccessor.d.ts +0 -111
- package/dist/accessors-v2/ReferralAccessor.js +0 -190
- package/dist/accessors-v2/RemediationOutcomeFormAccessor.d.ts +0 -111
- package/dist/accessors-v2/RemediationOutcomeFormAccessor.js +0 -190
- package/dist/accessors-v2/RemediationRequiredReasonAccessor.d.ts +0 -111
- package/dist/accessors-v2/RemediationRequiredReasonAccessor.js +0 -190
- package/dist/accessors-v2/ReturnsAccessor.d.ts +0 -111
- package/dist/accessors-v2/ReturnsAccessor.js +0 -190
- package/dist/accessors-v2/RewardAccessor.d.ts +0 -111
- package/dist/accessors-v2/RewardAccessor.js +0 -190
- package/dist/accessors-v2/SalesTerritoryAccessor.d.ts +0 -111
- package/dist/accessors-v2/SalesTerritoryAccessor.js +0 -190
- package/dist/accessors-v2/ScheduleSlotAccessor.d.ts +0 -111
- package/dist/accessors-v2/ScheduleSlotAccessor.js +0 -190
- package/dist/accessors-v2/ServiceAccessor.d.ts +0 -111
- package/dist/accessors-v2/ServiceAccessor.js +0 -190
- package/dist/accessors-v2/ServiceAppointmentAccessor.d.ts +0 -111
- package/dist/accessors-v2/ServiceAppointmentAccessor.js +0 -190
- package/dist/accessors-v2/ServiceAppointmentConfigAccessor.d.ts +0 -111
- package/dist/accessors-v2/ServiceAppointmentConfigAccessor.js +0 -190
- package/dist/accessors-v2/ServiceVisitAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/ServiceVisitAuditAccessor.js +0 -190
- package/dist/accessors-v2/SiteSpecificRiskAssessmentOutcomeFormAccessor.d.ts +0 -111
- package/dist/accessors-v2/SiteSpecificRiskAssessmentOutcomeFormAccessor.js +0 -190
- package/dist/accessors-v2/SmsMessageAccessor.d.ts +0 -111
- package/dist/accessors-v2/SmsMessageAccessor.js +0 -190
- package/dist/accessors-v2/SweeperMaintenanceAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/SweeperMaintenanceAuditAccessor.js +0 -190
- package/dist/accessors-v2/TeamAccessor.d.ts +0 -111
- package/dist/accessors-v2/TestEntityForVisualBuilderAccessor.d.ts +0 -111
- package/dist/accessors-v2/TestEntityForVisualBuilderAccessor.js +0 -190
- package/dist/accessors-v2/TimeSlotAccessor.d.ts +0 -111
- package/dist/accessors-v2/TransactionAccessor.d.ts +0 -111
- package/dist/accessors-v2/TransactionAccessor.js +0 -190
- package/dist/accessors-v2/TwilioUserUpdateAccessor.d.ts +0 -111
- package/dist/accessors-v2/TwilioUserUpdateAccessor.js +0 -190
- package/dist/accessors-v2/UgAuditOfInstallationAccessor.d.ts +0 -111
- package/dist/accessors-v2/UgAuditOfInstallationAccessor.js +0 -190
- package/dist/accessors-v2/UgExternalAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/UgExternalAuditAccessor.js +0 -190
- package/dist/accessors-v2/UgInProgressAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/UgInProgressAuditAccessor.js +0 -190
- package/dist/accessors-v2/UgInstallationAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/UgInstallationAuditAccessor.js +0 -190
- package/dist/accessors-v2/UgRetroAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/UgRetroAuditAccessor.js +0 -190
- package/dist/accessors-v2/UserAccessor.d.ts +0 -111
- package/dist/accessors-v2/UserAccessor.js +0 -190
- package/dist/accessors-v2/VisitAccessor.d.ts +0 -111
- package/dist/accessors-v2/VisitAccessor.js +0 -190
- package/dist/accessors-v2/VoiceConfigurationAccessor.d.ts +0 -111
- package/dist/accessors-v2/VoiceConfigurationAccessor.js +0 -190
- package/dist/accessors-v2/WayleaveAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/WayleaveAuditAccessor.js +0 -190
- package/dist/accessors-v2/WorkOrderAccessor.d.ts +0 -111
- package/dist/accessors-v2/WorkOrderAccessor.js +0 -190
- package/dist/accessors-v2/WorkOrderStatusUpdateAccessor.d.ts +0 -111
- package/dist/accessors-v2/WorkOrderStatusUpdateAccessor.js +0 -190
- package/dist/accessors-v2/YfFieldServiceVisitAccessor.d.ts +0 -111
- package/dist/accessors-v2/YfFieldServiceVisitAccessor.js +0 -190
- package/dist/accessors-v2/YfStockAuditAccessor.d.ts +0 -111
- package/dist/accessors-v2/YfStockAuditAccessor.js +0 -190
- package/dist/actions-v2/ActivateOrderDto.d.ts +0 -94
- package/dist/actions-v2/ActivateOrderDto.js +0 -58
- package/dist/actions-v2/ActivateRecontractOrderDto.d.ts +0 -70
- package/dist/actions-v2/ActivateRecontractOrderDto.js +0 -62
- package/dist/actions-v2/AddAmcoResponseDataDto.d.ts +0 -91
- package/dist/actions-v2/AddAmcoResponseDataDto.js +0 -54
- package/dist/actions-v2/AddressCreateDto.d.ts +0 -182
- package/dist/actions-v2/AddressCreateDto.js +0 -56
- package/dist/actions-v2/AddressUpdateDto.d.ts +0 -123
- package/dist/actions-v2/AddressUpdateDto.js +0 -58
- package/dist/actions-v2/AllowCsatForCaseDto.d.ts +0 -70
- package/dist/actions-v2/AllowCsatForCaseDto.js +0 -61
- package/dist/actions-v2/ApproveCboDto.d.ts +0 -108
- package/dist/actions-v2/ApproveCboDto.js +0 -63
- package/dist/actions-v2/AssignCaseByUserDto.d.ts +0 -70
- package/dist/actions-v2/AssignCaseByUserDto.js +0 -54
- package/dist/actions-v2/AssignCaseDto.d.ts +0 -86
- package/dist/actions-v2/AssignCaseDto.js +0 -63
- package/dist/actions-v2/AssignCaseTransitionDto.d.ts +0 -109
- package/dist/actions-v2/AssignCaseTransitionDto.js +0 -74
- package/dist/actions-v2/AssignCaseWithNoteFlowDto.d.ts +0 -239
- package/dist/actions-v2/AssignCaseWithNoteFlowDto.js +0 -178
- package/dist/actions-v2/AssignEngineerDto.d.ts +0 -92
- package/dist/actions-v2/AssignEngineerDto.js +0 -58
- package/dist/actions-v2/AssignOwnerDto.d.ts +0 -74
- package/dist/actions-v2/AssignOwnerDto.js +0 -58
- package/dist/actions-v2/AssignUsersDto.d.ts +0 -81
- package/dist/actions-v2/AssignUsersDto.js +0 -58
- package/dist/actions-v2/AssignWorkOrderDto.d.ts +0 -79
- package/dist/actions-v2/AssignWorkOrderDto.js +0 -56
- package/dist/actions-v2/BillingAdjustmentCreateDto.d.ts +0 -144
- package/dist/actions-v2/BillingAdjustmentCreateDto.js +0 -56
- package/dist/actions-v2/BillingAdjustmentUpdateDto.d.ts +0 -144
- package/dist/actions-v2/BillingAdjustmentUpdateDto.js +0 -58
- package/dist/actions-v2/BillingRequestMandateUpdateDto.d.ts +0 -158
- package/dist/actions-v2/BillingRequestMandateUpdateDto.js +0 -63
- package/dist/actions-v2/BillingRequestPaymentCreateDto.d.ts +0 -153
- package/dist/actions-v2/BillingRequestPaymentCreateDto.js +0 -61
- package/dist/actions-v2/BillingRequestPaymentUpdateDto.d.ts +0 -158
- package/dist/actions-v2/BillingRequestPaymentUpdateDto.js +0 -63
- package/dist/actions-v2/CancelActiveOrderDto.d.ts +0 -187
- package/dist/actions-v2/CancelActiveOrderDto.js +0 -123
- package/dist/actions-v2/CancelBillingRequestDto.d.ts +0 -85
- package/dist/actions-v2/CancelBillingRequestDto.js +0 -59
- package/dist/actions-v2/CancelBillingRequestFromPaymentDto.d.ts +0 -76
- package/dist/actions-v2/CancelBillingRequestFromPaymentDto.js +0 -58
- package/dist/actions-v2/CancelInstallWorkOrderFlowSupplierDto.d.ts +0 -191
- package/dist/actions-v2/CancelInstallWorkOrderFlowSupplierDto.js +0 -128
- package/dist/actions-v2/CancelInstallWorkOrderFlowTenantDto.d.ts +0 -191
- package/dist/actions-v2/CancelInstallWorkOrderFlowTenantDto.js +0 -128
- package/dist/actions-v2/CancelOrderForRecontractDto.d.ts +0 -70
- package/dist/actions-v2/CancelOrderForRecontractDto.js +0 -62
- package/dist/actions-v2/CancelOrderForRollbackDto.d.ts +0 -70
- package/dist/actions-v2/CancelOrderForRollbackDto.js +0 -62
- package/dist/actions-v2/CancelOrderPreInstallDto.d.ts +0 -186
- package/dist/actions-v2/CancelOrderPreInstallDto.js +0 -123
- package/dist/actions-v2/CancelPaymentDto.d.ts +0 -69
- package/dist/actions-v2/CancelPaymentDto.js +0 -61
- package/dist/actions-v2/CancelPrePullWorkOrderFlowSupplierDto.d.ts +0 -191
- package/dist/actions-v2/CancelPrePullWorkOrderFlowSupplierDto.js +0 -128
- package/dist/actions-v2/CancelRemediationWorkOrderSupplierDto.d.ts +0 -191
- package/dist/actions-v2/CancelRemediationWorkOrderSupplierDto.js +0 -128
- package/dist/actions-v2/CancelServiceWorkOrderFlowSupplierDto.d.ts +0 -191
- package/dist/actions-v2/CancelServiceWorkOrderFlowSupplierDto.js +0 -128
- package/dist/actions-v2/CancelServiceWorkOrderFlowTenantDto.d.ts +0 -191
- package/dist/actions-v2/CancelServiceWorkOrderFlowTenantDto.js +0 -128
- package/dist/actions-v2/CancelServiceWorkOrderSupplierDto.d.ts +0 -65
- package/dist/actions-v2/CancelServiceWorkOrderSupplierDto.js +0 -61
- package/dist/actions-v2/CancelServiceWorkOrderTenantDto.d.ts +0 -75
- package/dist/actions-v2/CancelServiceWorkOrderTenantDto.js +0 -61
- package/dist/actions-v2/CancelTransactionDto.d.ts +0 -77
- package/dist/actions-v2/CancelTransactionDto.js +0 -59
- package/dist/actions-v2/CaseCreateNoteDto.d.ts +0 -86
- package/dist/actions-v2/CaseCreateNoteDto.js +0 -59
- package/dist/actions-v2/CaseDefaultStageEscalatedDto.d.ts +0 -240
- package/dist/actions-v2/CaseDefaultStageEscalatedDto.js +0 -177
- package/dist/actions-v2/CaseDefaultStageSolvedDto.d.ts +0 -170
- package/dist/actions-v2/CaseDefaultStageSolvedDto.js +0 -128
- package/dist/actions-v2/CasedefaultstageblockedDto.d.ts +0 -196
- package/dist/actions-v2/CasedefaultstageblockedDto.js +0 -130
- package/dist/actions-v2/CboCreateDto.d.ts +0 -120
- package/dist/actions-v2/CboCreateDto.js +0 -61
- package/dist/actions-v2/CboUpdateDto.d.ts +0 -107
- package/dist/actions-v2/CboUpdateDto.js +0 -63
- package/dist/actions-v2/ChangeApprovalStatusDto.d.ts +0 -83
- package/dist/actions-v2/ChangeApprovalStatusDto.js +0 -58
- package/dist/actions-v2/ChangeBillingDayDto.d.ts +0 -74
- package/dist/actions-v2/ChangeBillingDayDto.js +0 -56
- package/dist/actions-v2/ChangeBillingModeDto.d.ts +0 -81
- package/dist/actions-v2/ChangeBillingModeDto.js +0 -58
- package/dist/actions-v2/ChangeCaseChannelDto.d.ts +0 -74
- package/dist/actions-v2/ChangeCaseChannelDto.js +0 -58
- package/dist/actions-v2/ChangeOntReplacementRequestApprovalStatusDto.d.ts +0 -79
- package/dist/actions-v2/ChangeOntReplacementRequestApprovalStatusDto.js +0 -63
- package/dist/actions-v2/ChangeWorkOrderStatusDto.d.ts +0 -102
- package/dist/actions-v2/ChangeWorkOrderStatusDto.js +0 -58
- package/dist/actions-v2/ClearOrderDeactivateOnDateDto.d.ts +0 -74
- package/dist/actions-v2/ClearOrderDeactivateOnDateDto.js +0 -58
- package/dist/actions-v2/CloseConversationDto.d.ts +0 -94
- package/dist/actions-v2/CloseConversationDto.js +0 -61
- package/dist/actions-v2/CompleteChurnRequestDto.d.ts +0 -85
- package/dist/actions-v2/CompleteChurnRequestDto.js +0 -61
- package/dist/actions-v2/CompleteChurnRequestFlowDto.d.ts +0 -185
- package/dist/actions-v2/CompleteChurnRequestFlowDto.js +0 -128
- package/dist/actions-v2/CompleteCollectionInspectionDetailsDto.d.ts +0 -135
- package/dist/actions-v2/CompleteCollectionInspectionDetailsDto.js +0 -56
- package/dist/actions-v2/CompleteInstallWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CompleteInstallWorkOrderDto.js +0 -61
- package/dist/actions-v2/CompleteInstallWorkOrderFlowDto.d.ts +0 -4473
- package/dist/actions-v2/CompleteInstallWorkOrderFlowDto.js +0 -619
- package/dist/actions-v2/CompletePaymentMethodRefundDto.d.ts +0 -81
- package/dist/actions-v2/CompletePaymentMethodRefundDto.js +0 -56
- package/dist/actions-v2/CompletePaymentMethodRefundFlowDto.d.ts +0 -179
- package/dist/actions-v2/CompletePaymentMethodRefundFlowDto.js +0 -121
- package/dist/actions-v2/CompletePicRequestDto.d.ts +0 -85
- package/dist/actions-v2/CompletePicRequestDto.js +0 -61
- package/dist/actions-v2/CompletePicRequestFlowDto.d.ts +0 -185
- package/dist/actions-v2/CompletePicRequestFlowDto.js +0 -128
- package/dist/actions-v2/CompletePrePullWorkOrderDto.d.ts +0 -93
- package/dist/actions-v2/CompletePrePullWorkOrderDto.js +0 -63
- package/dist/actions-v2/CompletePrePullWorkOrderFlowDto.d.ts +0 -461
- package/dist/actions-v2/CompletePrePullWorkOrderFlowDto.js +0 -225
- package/dist/actions-v2/CompleteRemediationWorkOrderDto.d.ts +0 -86
- package/dist/actions-v2/CompleteRemediationWorkOrderDto.js +0 -63
- package/dist/actions-v2/CompleteRemediationWorkOrderFlowDto.d.ts +0 -464
- package/dist/actions-v2/CompleteRemediationWorkOrderFlowDto.js +0 -181
- package/dist/actions-v2/CompleteServiceWorkOrderDto.d.ts +0 -122
- package/dist/actions-v2/CompleteServiceWorkOrderDto.js +0 -63
- package/dist/actions-v2/CompleteServiceWorkOrderFlowDto.d.ts +0 -1342
- package/dist/actions-v2/CompleteServiceWorkOrderFlowDto.js +0 -225
- package/dist/actions-v2/ConfirmPaymentSuccessDto.d.ts +0 -70
- package/dist/actions-v2/ConfirmPaymentSuccessDto.js +0 -62
- package/dist/actions-v2/ConfirmTransactionDto.d.ts +0 -84
- package/dist/actions-v2/ConfirmTransactionDto.js +0 -59
- package/dist/actions-v2/CreateAccountCreditDto.d.ts +0 -89
- package/dist/actions-v2/CreateAccountCreditDto.js +0 -59
- package/dist/actions-v2/CreateAccountFromBrskDto.d.ts +0 -102
- package/dist/actions-v2/CreateAccountFromBrskDto.js +0 -54
- package/dist/actions-v2/CreateActivityLogEntryDto.d.ts +0 -93
- package/dist/actions-v2/CreateActivityLogEntryDto.js +0 -56
- package/dist/actions-v2/CreateAffiliateCodeDto.d.ts +0 -84
- package/dist/actions-v2/CreateAffiliateCodeDto.js +0 -54
- package/dist/actions-v2/CreateAppointmentDto.d.ts +0 -123
- package/dist/actions-v2/CreateAppointmentDto.js +0 -54
- package/dist/actions-v2/CreateAuddisPgSubmissionAllocationDto.d.ts +0 -88
- package/dist/actions-v2/CreateAuddisPgSubmissionAllocationDto.js +0 -59
- package/dist/actions-v2/CreateBacsPgSubmissionAllocationDto.d.ts +0 -88
- package/dist/actions-v2/CreateBacsPgSubmissionAllocationDto.js +0 -59
- package/dist/actions-v2/CreateBillingRequestForInvoicesDto.d.ts +0 -143
- package/dist/actions-v2/CreateBillingRequestForInvoicesDto.js +0 -56
- package/dist/actions-v2/CreateBillingRequestTransactionDto.d.ts +0 -118
- package/dist/actions-v2/CreateBillingRequestTransactionDto.js +0 -56
- package/dist/actions-v2/CreateBrskMigrationErrorDto.d.ts +0 -100
- package/dist/actions-v2/CreateBrskMigrationErrorDto.js +0 -52
- package/dist/actions-v2/CreateBundleProductActionDto.d.ts +0 -348
- package/dist/actions-v2/CreateBundleProductActionDto.js +0 -61
- package/dist/actions-v2/CreateBusinessAccountDto.d.ts +0 -81
- package/dist/actions-v2/CreateBusinessAccountDto.js +0 -61
- package/dist/actions-v2/CreateCallEventDto.d.ts +0 -56
- package/dist/actions-v2/CreateCallEventDto.js +0 -52
- package/dist/actions-v2/CreateCallTransferDto.d.ts +0 -56
- package/dist/actions-v2/CreateCallTransferDto.js +0 -52
- package/dist/actions-v2/CreateCancelCollectionAmcoDto.d.ts +0 -74
- package/dist/actions-v2/CreateCancelCollectionAmcoDto.js +0 -61
- package/dist/actions-v2/CreateCaseDto.d.ts +0 -95
- package/dist/actions-v2/CreateCaseDto.js +0 -56
- package/dist/actions-v2/CreateCaseFromCasesDto.d.ts +0 -98
- package/dist/actions-v2/CreateCaseFromCasesDto.js +0 -52
- package/dist/actions-v2/CreateCaseFromContactDto.d.ts +0 -258
- package/dist/actions-v2/CreateCaseFromContactDto.js +0 -171
- package/dist/actions-v2/CreateCaseWithDpaDto.d.ts +0 -162
- package/dist/actions-v2/CreateCaseWithDpaDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardDto.d.ts +0 -105
- package/dist/actions-v2/CreateCashbackRewardDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardForOrderReferralDto.d.ts +0 -208
- package/dist/actions-v2/CreateCashbackRewardForOrderReferralDto.js +0 -179
- package/dist/actions-v2/CreateCashbackRewardRefereeFailedEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateCashbackRewardRefereeFailedEmailDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardRefereePendingEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateCashbackRewardRefereePendingEmailDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardRefereeSuccessEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateCashbackRewardRefereeSuccessEmailDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardReferrerFailedEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateCashbackRewardReferrerFailedEmailDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardReferrerPendingEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateCashbackRewardReferrerPendingEmailDto.js +0 -59
- package/dist/actions-v2/CreateCashbackRewardReferrerSuccessEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateCashbackRewardReferrerSuccessEmailDto.js +0 -59
- package/dist/actions-v2/CreateChurnRequestDto.d.ts +0 -90
- package/dist/actions-v2/CreateChurnRequestDto.js +0 -59
- package/dist/actions-v2/CreateCollectionAmcoReplacementWorkOrderDto.d.ts +0 -262
- package/dist/actions-v2/CreateCollectionAmcoReplacementWorkOrderDto.js +0 -178
- package/dist/actions-v2/CreateCollectionAmcoReplacementWorkOrderFromWorkOrderDto.d.ts +0 -359
- package/dist/actions-v2/CreateCollectionAmcoReplacementWorkOrderFromWorkOrderDto.js +0 -242
- package/dist/actions-v2/CreateCollectionAmcoWorkOrderDto.d.ts +0 -182
- package/dist/actions-v2/CreateCollectionAmcoWorkOrderDto.js +0 -59
- package/dist/actions-v2/CreateCollectionAmcoWorkOrderFromOrderDto.d.ts +0 -276
- package/dist/actions-v2/CreateCollectionAmcoWorkOrderFromOrderDto.js +0 -120
- package/dist/actions-v2/CreateCollectionRescheduledChangeReasonTenantDto.d.ts +0 -91
- package/dist/actions-v2/CreateCollectionRescheduledChangeReasonTenantDto.js +0 -61
- package/dist/actions-v2/CreateCollectionWorkOrderDto.d.ts +0 -88
- package/dist/actions-v2/CreateCollectionWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateCollectionWorkOrderFromOrderDto.d.ts +0 -182
- package/dist/actions-v2/CreateCollectionWorkOrderFromOrderDto.js +0 -122
- package/dist/actions-v2/CreateContactDto.d.ts +0 -151
- package/dist/actions-v2/CreateContactDto.js +0 -56
- package/dist/actions-v2/CreateContactFromBrskDto.d.ts +0 -107
- package/dist/actions-v2/CreateContactFromBrskDto.js +0 -52
- package/dist/actions-v2/CreateConversationDto.d.ts +0 -106
- package/dist/actions-v2/CreateConversationDto.js +0 -56
- package/dist/actions-v2/CreateConversationFeedbackDto.d.ts +0 -126
- package/dist/actions-v2/CreateConversationFeedbackDto.js +0 -59
- package/dist/actions-v2/CreateCustomerDeviceConfigurationDto.d.ts +0 -95
- package/dist/actions-v2/CreateCustomerDeviceConfigurationDto.js +0 -54
- package/dist/actions-v2/CreateCustomerDeviceOntDto.d.ts +0 -92
- package/dist/actions-v2/CreateCustomerDeviceOntDto.js +0 -56
- package/dist/actions-v2/CreateCustomerDeviceRouterFromDispatchDto.d.ts +0 -79
- package/dist/actions-v2/CreateCustomerDeviceRouterFromDispatchDto.js +0 -52
- package/dist/actions-v2/CreateDispatchAmcoWorkOrderDto.d.ts +0 -222
- package/dist/actions-v2/CreateDispatchAmcoWorkOrderDto.js +0 -59
- package/dist/actions-v2/CreateDispatchAmcoWorkOrderFromOrderDto.d.ts +0 -314
- package/dist/actions-v2/CreateDispatchAmcoWorkOrderFromOrderDto.js +0 -118
- package/dist/actions-v2/CreateEmailSenderDto.d.ts +0 -74
- package/dist/actions-v2/CreateEmailSenderDto.js +0 -54
- package/dist/actions-v2/CreateEmailTemplateDto.d.ts +0 -90
- package/dist/actions-v2/CreateEmailTemplateDto.js +0 -61
- package/dist/actions-v2/CreateFieldServiceDispatchedProductDto.d.ts +0 -167
- package/dist/actions-v2/CreateFieldServiceDispatchedProductDto.js +0 -180
- package/dist/actions-v2/CreateFieldServiceMeshProductDto.d.ts +0 -107
- package/dist/actions-v2/CreateFieldServiceMeshProductDto.js +0 -59
- package/dist/actions-v2/CreateFieldServiceProductDto.d.ts +0 -109
- package/dist/actions-v2/CreateFieldServiceProductDto.js +0 -61
- package/dist/actions-v2/CreateFieldServiceRouterProductDto.d.ts +0 -107
- package/dist/actions-v2/CreateFieldServiceRouterProductDto.js +0 -59
- package/dist/actions-v2/CreateFileDto.d.ts +0 -56
- package/dist/actions-v2/CreateFileDto.js +0 -52
- package/dist/actions-v2/CreateFinalNoticeActivityDto.d.ts +0 -94
- package/dist/actions-v2/CreateFinalNoticeActivityDto.js +0 -56
- package/dist/actions-v2/CreateFinanceWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CreateFinanceWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateImpersonationTrackerDto.d.ts +0 -95
- package/dist/actions-v2/CreateImpersonationTrackerDto.js +0 -61
- package/dist/actions-v2/CreateInspectionDto.d.ts +0 -150
- package/dist/actions-v2/CreateInspectionDto.js +0 -61
- package/dist/actions-v2/CreateInspectionWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CreateInspectionWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateInstallBusinessWorkOrderDto.d.ts +0 -103
- package/dist/actions-v2/CreateInstallBusinessWorkOrderDto.js +0 -62
- package/dist/actions-v2/CreateInstallCancelledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreateInstallCancelledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreateInstallCancelledChangeReasonTenantDto.d.ts +0 -91
- package/dist/actions-v2/CreateInstallCancelledChangeReasonTenantDto.js +0 -61
- package/dist/actions-v2/CreateInstallDto.d.ts +0 -148
- package/dist/actions-v2/CreateInstallDto.js +0 -59
- package/dist/actions-v2/CreateInstallRescheduledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreateInstallRescheduledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreateInstallRescheduledChangeReasonTenantDto.d.ts +0 -91
- package/dist/actions-v2/CreateInstallRescheduledChangeReasonTenantDto.js +0 -61
- package/dist/actions-v2/CreateInstallServiceDto.d.ts +0 -148
- package/dist/actions-v2/CreateInstallServiceDto.js +0 -59
- package/dist/actions-v2/CreateInstallWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CreateInstallWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateInstallWorkOrderFlowDto.d.ts +0 -111
- package/dist/actions-v2/CreateInstallWorkOrderFlowDto.js +0 -76
- package/dist/actions-v2/CreateInternetProductActionDto.d.ts +0 -355
- package/dist/actions-v2/CreateInternetProductActionDto.js +0 -61
- package/dist/actions-v2/CreateInvoiceItemDto.d.ts +0 -58
- package/dist/actions-v2/CreateInvoiceItemDto.js +0 -54
- package/dist/actions-v2/CreateLaborProductActionDto.d.ts +0 -348
- package/dist/actions-v2/CreateLaborProductActionDto.js +0 -61
- package/dist/actions-v2/CreateLandlineProductActionDto.d.ts +0 -348
- package/dist/actions-v2/CreateLandlineProductActionDto.js +0 -61
- package/dist/actions-v2/CreateLeadDto.d.ts +0 -94
- package/dist/actions-v2/CreateLeadDto.js +0 -56
- package/dist/actions-v2/CreateLeadFromAddressDto.d.ts +0 -323
- package/dist/actions-v2/CreateLeadFromAddressDto.js +0 -165
- package/dist/actions-v2/CreateLeadFromBrskDto.d.ts +0 -118
- package/dist/actions-v2/CreateLeadFromBrskDto.js +0 -52
- package/dist/actions-v2/CreateLinkedWorkOrderDto.d.ts +0 -78
- package/dist/actions-v2/CreateLinkedWorkOrderDto.js +0 -56
- package/dist/actions-v2/CreateLinkedWorkOrderFlowDto.d.ts +0 -759
- package/dist/actions-v2/CreateLinkedWorkOrderFlowDto.js +0 -431
- package/dist/actions-v2/CreateMeshProductActionDto.d.ts +0 -348
- package/dist/actions-v2/CreateMeshProductActionDto.js +0 -61
- package/dist/actions-v2/CreateMessageDto.d.ts +0 -118
- package/dist/actions-v2/CreateMessageDto.js +0 -59
- package/dist/actions-v2/CreateMobileProductActionDto.d.ts +0 -340
- package/dist/actions-v2/CreateMobileProductActionDto.js +0 -61
- package/dist/actions-v2/CreateNavigationConfigDto.d.ts +0 -78
- package/dist/actions-v2/CreateNavigationConfigDto.js +0 -56
- package/dist/actions-v2/CreateNetworkAdjustmentWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CreateNetworkAdjustmentWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateNetworkDeviceDto.d.ts +0 -97
- package/dist/actions-v2/CreateNetworkDeviceDto.js +0 -61
- package/dist/actions-v2/CreateNewReturnDto.d.ts +0 -351
- package/dist/actions-v2/CreateNewReturnDto.js +0 -54
- package/dist/actions-v2/CreateNoteDto.d.ts +0 -88
- package/dist/actions-v2/CreateNoteDto.js +0 -61
- package/dist/actions-v2/CreateNoteForCaseAssignmentDto.d.ts +0 -74
- package/dist/actions-v2/CreateNoteForCaseAssignmentDto.js +0 -61
- package/dist/actions-v2/CreateOneTouchSwitchOrderDto.d.ts +0 -132
- package/dist/actions-v2/CreateOneTouchSwitchOrderDto.js +0 -56
- package/dist/actions-v2/CreateOntReplacementApprovalDto.d.ts +0 -75
- package/dist/actions-v2/CreateOntReplacementApprovalDto.js +0 -61
- package/dist/actions-v2/CreateOrderCampaignDto.d.ts +0 -79
- package/dist/actions-v2/CreateOrderCampaignDto.js +0 -59
- package/dist/actions-v2/CreateOrderCheckDto.d.ts +0 -200
- package/dist/actions-v2/CreateOrderCheckDto.js +0 -54
- package/dist/actions-v2/CreateOrderFromBrskDto.d.ts +0 -131
- package/dist/actions-v2/CreateOrderFromBrskDto.js +0 -52
- package/dist/actions-v2/CreateOrderItemFromBrskDto.d.ts +0 -191
- package/dist/actions-v2/CreateOrderItemFromBrskDto.js +0 -52
- package/dist/actions-v2/CreateOrderKciDto.d.ts +0 -113
- package/dist/actions-v2/CreateOrderKciDto.js +0 -54
- package/dist/actions-v2/CreateOrderReferralDto.d.ts +0 -105
- package/dist/actions-v2/CreateOrderReferralDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralRefereeCancelledEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralRefereeCancelledEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralRefereeNotQualifiedEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralRefereeNotQualifiedEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralRefereePendingEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralRefereePendingEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralRefereeQualifiedEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralRefereeQualifiedEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralReferrerCancelledEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralReferrerCancelledEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralReferrerNotQualifiedEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralReferrerNotQualifiedEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralReferrerPendingEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralReferrerPendingEmailDto.js +0 -59
- package/dist/actions-v2/CreateOrderReferralReferrerQualifiedEmailDto.d.ts +0 -135
- package/dist/actions-v2/CreateOrderReferralReferrerQualifiedEmailDto.js +0 -59
- package/dist/actions-v2/CreateOtpTransactionDto.d.ts +0 -112
- package/dist/actions-v2/CreateOtpTransactionDto.js +0 -57
- package/dist/actions-v2/CreateOutboundSmsDto.d.ts +0 -79
- package/dist/actions-v2/CreateOutboundSmsDto.js +0 -59
- package/dist/actions-v2/CreatePaymentDto.d.ts +0 -171
- package/dist/actions-v2/CreatePaymentDto.js +0 -175
- package/dist/actions-v2/CreatePaymentForInvoicesDto.d.ts +0 -107
- package/dist/actions-v2/CreatePaymentForInvoicesDto.js +0 -57
- package/dist/actions-v2/CreatePaymentMethodDto.d.ts +0 -76
- package/dist/actions-v2/CreatePaymentMethodDto.js +0 -54
- package/dist/actions-v2/CreatePaymentMethodRefundDto.d.ts +0 -90
- package/dist/actions-v2/CreatePaymentMethodRefundDto.js +0 -54
- package/dist/actions-v2/CreatePaymentMethodRefundForContactDto.d.ts +0 -195
- package/dist/actions-v2/CreatePaymentMethodRefundForContactDto.js +0 -174
- package/dist/actions-v2/CreatePermissionToFailDto.d.ts +0 -70
- package/dist/actions-v2/CreatePermissionToFailDto.js +0 -56
- package/dist/actions-v2/CreatePgContactDto.d.ts +0 -97
- package/dist/actions-v2/CreatePgContactDto.js +0 -59
- package/dist/actions-v2/CreatePgDisputeDto.d.ts +0 -96
- package/dist/actions-v2/CreatePgDisputeDto.js +0 -59
- package/dist/actions-v2/CreatePgLogDto.d.ts +0 -105
- package/dist/actions-v2/CreatePgLogDto.js +0 -59
- package/dist/actions-v2/CreatePgPaymentMethodDto.d.ts +0 -145
- package/dist/actions-v2/CreatePgPaymentMethodDto.js +0 -59
- package/dist/actions-v2/CreatePgResponseDto.d.ts +0 -118
- package/dist/actions-v2/CreatePgResponseDto.js +0 -59
- package/dist/actions-v2/CreatePgSortCodeDto.d.ts +0 -89
- package/dist/actions-v2/CreatePgSortCodeDto.js +0 -59
- package/dist/actions-v2/CreatePgSubmissionDto.d.ts +0 -105
- package/dist/actions-v2/CreatePgSubmissionDto.js +0 -59
- package/dist/actions-v2/CreatePgSubstitutionRuleDto.d.ts +0 -81
- package/dist/actions-v2/CreatePgSubstitutionRuleDto.js +0 -59
- package/dist/actions-v2/CreatePgTransactionChargeDto.d.ts +0 -129
- package/dist/actions-v2/CreatePgTransactionChargeDto.js +0 -59
- package/dist/actions-v2/CreatePgTransactionRefundDto.d.ts +0 -129
- package/dist/actions-v2/CreatePgTransactionRefundDto.js +0 -59
- package/dist/actions-v2/CreatePgValidationRuleDto.d.ts +0 -208
- package/dist/actions-v2/CreatePgValidationRuleDto.js +0 -59
- package/dist/actions-v2/CreatePgWebhookAttemptDto.d.ts +0 -112
- package/dist/actions-v2/CreatePgWebhookAttemptDto.js +0 -59
- package/dist/actions-v2/CreatePgWebhookDto.d.ts +0 -109
- package/dist/actions-v2/CreatePgWebhookDto.js +0 -59
- package/dist/actions-v2/CreatePhoneNumberFromBrskDto.d.ts +0 -67
- package/dist/actions-v2/CreatePhoneNumberFromBrskDto.js +0 -54
- package/dist/actions-v2/CreatePicRequestDto.d.ts +0 -89
- package/dist/actions-v2/CreatePicRequestDto.js +0 -59
- package/dist/actions-v2/CreatePlanningWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CreatePlanningWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreatePrePullCancelledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreatePrePullCancelledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreatePrePullDto.d.ts +0 -148
- package/dist/actions-v2/CreatePrePullDto.js +0 -59
- package/dist/actions-v2/CreatePrePullRescheduledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreatePrePullRescheduledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreatePrePullWorkOrderDto.d.ts +0 -102
- package/dist/actions-v2/CreatePrePullWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreatePrimaryAccountDto.d.ts +0 -99
- package/dist/actions-v2/CreatePrimaryAccountDto.js +0 -61
- package/dist/actions-v2/CreatePushNotificationDto.d.ts +0 -153
- package/dist/actions-v2/CreatePushNotificationDto.js +0 -56
- package/dist/actions-v2/CreateRecontractOrderDto.d.ts +0 -159
- package/dist/actions-v2/CreateRecontractOrderDto.js +0 -57
- package/dist/actions-v2/CreateRecontractOrderItemDto.d.ts +0 -203
- package/dist/actions-v2/CreateRecontractOrderItemDto.js +0 -57
- package/dist/actions-v2/CreateRecontractVoiceConfigurationDto.d.ts +0 -211
- package/dist/actions-v2/CreateRecontractVoiceConfigurationDto.js +0 -57
- package/dist/actions-v2/CreateRemediationCancelledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreateRemediationCancelledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreateRemediationDto.d.ts +0 -148
- package/dist/actions-v2/CreateRemediationDto.js +0 -59
- package/dist/actions-v2/CreateRemediationRescheduledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreateRemediationRescheduledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreateRemediationWorkOrderDto.d.ts +0 -104
- package/dist/actions-v2/CreateRemediationWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateResellerAccountDto.d.ts +0 -81
- package/dist/actions-v2/CreateResellerAccountDto.js +0 -61
- package/dist/actions-v2/CreateSalesTerritoryDto.d.ts +0 -91
- package/dist/actions-v2/CreateSalesTerritoryDto.js +0 -57
- package/dist/actions-v2/CreateServiceCancelledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreateServiceCancelledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreateServiceCancelledChangeReasonTenantDto.d.ts +0 -91
- package/dist/actions-v2/CreateServiceCancelledChangeReasonTenantDto.js +0 -61
- package/dist/actions-v2/CreateServiceDto.d.ts +0 -148
- package/dist/actions-v2/CreateServiceDto.js +0 -59
- package/dist/actions-v2/CreateServiceRescheduledChangeReasonSupplierDto.d.ts +0 -91
- package/dist/actions-v2/CreateServiceRescheduledChangeReasonSupplierDto.js +0 -61
- package/dist/actions-v2/CreateServiceRescheduledChangeReasonTenantDto.d.ts +0 -91
- package/dist/actions-v2/CreateServiceRescheduledChangeReasonTenantDto.js +0 -61
- package/dist/actions-v2/CreateServiceWorkOrderDto.d.ts +0 -82
- package/dist/actions-v2/CreateServiceWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateTeamDto.d.ts +0 -90
- package/dist/actions-v2/CreateTeamDto.js +0 -56
- package/dist/actions-v2/CreateTelevisionProductActionDto.d.ts +0 -353
- package/dist/actions-v2/CreateTelevisionProductActionDto.js +0 -59
- package/dist/actions-v2/CreateTestEntityForVisualBuilderDto.d.ts +0 -85
- package/dist/actions-v2/CreateTestEntityForVisualBuilderDto.js +0 -57
- package/dist/actions-v2/CreateTimeSlotDto.d.ts +0 -154
- package/dist/actions-v2/CreateTimeSlotDto.js +0 -56
- package/dist/actions-v2/CreateTransactionalEmailDto.d.ts +0 -234
- package/dist/actions-v2/CreateTransactionalEmailDto.js +0 -59
- package/dist/actions-v2/CreateVoiceConfigurationDto.d.ts +0 -208
- package/dist/actions-v2/CreateVoiceConfigurationDto.js +0 -54
- package/dist/actions-v2/CreateWayleaveDto.d.ts +0 -148
- package/dist/actions-v2/CreateWayleaveDto.js +0 -59
- package/dist/actions-v2/CreateWayleaveWorkOrderDto.d.ts +0 -95
- package/dist/actions-v2/CreateWayleaveWorkOrderDto.js +0 -61
- package/dist/actions-v2/CreateWayleaveWorkOrderFlowDto.d.ts +0 -516
- package/dist/actions-v2/CreateWayleaveWorkOrderFlowDto.js +0 -173
- package/dist/actions-v2/CreateWorkOrderStatusUpdateDto.d.ts +0 -118
- package/dist/actions-v2/CreateWorkOrderStatusUpdateDto.js +0 -56
- package/dist/actions-v2/CreateYfStockAuditDto.d.ts +0 -140
- package/dist/actions-v2/CreateYfStockAuditDto.js +0 -54
- package/dist/actions-v2/CreatetwiliouserupdateDto.d.ts +0 -58
- package/dist/actions-v2/CreatetwiliouserupdateDto.js +0 -54
- package/dist/actions-v2/CreditNoteCreateDto.d.ts +0 -94
- package/dist/actions-v2/CreditNoteCreateDto.js +0 -56
- package/dist/actions-v2/CreditNoteUpdateDto.d.ts +0 -98
- package/dist/actions-v2/CreditNoteUpdateDto.js +0 -58
- package/dist/actions-v2/CrmDatasetCreateDto.d.ts +0 -110
- package/dist/actions-v2/CrmDatasetCreateDto.js +0 -59
- package/dist/actions-v2/CrmDatasetDefaultUpdateDto.d.ts +0 -109
- package/dist/actions-v2/CrmDatasetDefaultUpdateDto.js +0 -63
- package/dist/actions-v2/CustomerDeviceAtaUpdateDto.d.ts +0 -83
- package/dist/actions-v2/CustomerDeviceAtaUpdateDto.js +0 -58
- package/dist/actions-v2/CustomerDeviceRouterCreateDto.d.ts +0 -108
- package/dist/actions-v2/CustomerDeviceRouterCreateDto.js +0 -56
- package/dist/actions-v2/CustomerDeviceRouterUpdateDto.d.ts +0 -134
- package/dist/actions-v2/CustomerDeviceRouterUpdateDto.js +0 -58
- package/dist/actions-v2/DeactivateOrderDunningDto.d.ts +0 -69
- package/dist/actions-v2/DeactivateOrderDunningDto.js +0 -61
- package/dist/actions-v2/DefaultInstallWorkOrderEditFormDto.d.ts +0 -79
- package/dist/actions-v2/DefaultInstallWorkOrderEditFormDto.js +0 -63
- package/dist/actions-v2/DefaultServiceWorkOrderEditFormDto.d.ts +0 -114
- package/dist/actions-v2/DefaultServiceWorkOrderEditFormDto.js +0 -63
- package/dist/actions-v2/DefaultUpdateChurnRequestDto.d.ts +0 -89
- package/dist/actions-v2/DefaultUpdateChurnRequestDto.js +0 -58
- package/dist/actions-v2/DefaultUpdatePicRequestDto.d.ts +0 -89
- package/dist/actions-v2/DefaultUpdatePicRequestDto.js +0 -58
- package/dist/actions-v2/DeleteOfferDto.d.ts +0 -13
- package/dist/actions-v2/DeleteOfferDto.js +0 -14
- package/dist/actions-v2/DeleteProductDto.d.ts +0 -13
- package/dist/actions-v2/DeleteProductDto.js +0 -14
- package/dist/actions-v2/DiscountCreateDto.d.ts +0 -133
- package/dist/actions-v2/DiscountCreateDto.js +0 -56
- package/dist/actions-v2/DiscountUpdateDto.d.ts +0 -138
- package/dist/actions-v2/DiscountUpdateDto.js +0 -58
- package/dist/actions-v2/EditCaseFormDto.d.ts +0 -132
- package/dist/actions-v2/EditCaseFormDto.js +0 -58
- package/dist/actions-v2/EditCollectionAmcoWorkOrderDto.d.ts +0 -112
- package/dist/actions-v2/EditCollectionAmcoWorkOrderDto.js +0 -61
- package/dist/actions-v2/EditFieldServiceProductDto.d.ts +0 -107
- package/dist/actions-v2/EditFieldServiceProductDto.js +0 -56
- package/dist/actions-v2/EditNetworkDeviceDto.d.ts +0 -102
- package/dist/actions-v2/EditNetworkDeviceDto.js +0 -63
- package/dist/actions-v2/EditReturnDto.d.ts +0 -209
- package/dist/actions-v2/EditReturnDto.js +0 -56
- package/dist/actions-v2/EditSalesTerritoryDto.d.ts +0 -96
- package/dist/actions-v2/EditSalesTerritoryDto.js +0 -59
- package/dist/actions-v2/EscalateCaseActionDto.d.ts +0 -83
- package/dist/actions-v2/EscalateCaseActionDto.js +0 -58
- package/dist/actions-v2/EscalateCaseTransitionDto.d.ts +0 -240
- package/dist/actions-v2/EscalateCaseTransitionDto.js +0 -177
- package/dist/actions-v2/ExceptionInputDto.d.ts +0 -92
- package/dist/actions-v2/ExceptionInputDto.js +0 -54
- package/dist/actions-v2/FailPaymentDto.d.ts +0 -70
- package/dist/actions-v2/FailPaymentDto.js +0 -62
- package/dist/actions-v2/FailTransactionDto.d.ts +0 -84
- package/dist/actions-v2/FailTransactionDto.js +0 -59
- package/dist/actions-v2/FlowStepCompleteCollectionConfirmationDto.d.ts +0 -160
- package/dist/actions-v2/FlowStepCompleteCollectionConfirmationDto.js +0 -63
- package/dist/actions-v2/FlowStepEnRouteCallConfirmationDto.d.ts +0 -80
- package/dist/actions-v2/FlowStepEnRouteCallConfirmationDto.js +0 -63
- package/dist/actions-v2/FlowStepEnRouteCollectionConfirmationDto.d.ts +0 -86
- package/dist/actions-v2/FlowStepEnRouteCollectionConfirmationDto.js +0 -63
- package/dist/actions-v2/FlowStepMoreInforRequiredToVerifiedConfirmationDto.d.ts +0 -70
- package/dist/actions-v2/FlowStepMoreInforRequiredToVerifiedConfirmationDto.js +0 -63
- package/dist/actions-v2/FlowStepReceivedConfirmationDto.d.ts +0 -88
- package/dist/actions-v2/FlowStepReceivedConfirmationDto.js +0 -63
- package/dist/actions-v2/FlowStepReceivedToVerifiedConfirmationDto.d.ts +0 -96
- package/dist/actions-v2/FlowStepReceivedToVerifiedConfirmationDto.js +0 -63
- package/dist/actions-v2/FlowStepUpdateToAdditionalApprovalRequiredDto.d.ts +0 -70
- package/dist/actions-v2/FlowStepUpdateToAdditionalApprovalRequiredDto.js +0 -63
- package/dist/actions-v2/FlowStepVerifiedToApprovedDto.d.ts +0 -79
- package/dist/actions-v2/FlowStepVerifiedToApprovedDto.js +0 -63
- package/dist/actions-v2/InProgressWorkOrderConfirmationDto.d.ts +0 -75
- package/dist/actions-v2/InProgressWorkOrderConfirmationDto.js +0 -58
- package/dist/actions-v2/InvoiceCreateDto.d.ts +0 -60
- package/dist/actions-v2/InvoiceCreateDto.js +0 -56
- package/dist/actions-v2/InvoiceUpdateDto.d.ts +0 -88
- package/dist/actions-v2/InvoiceUpdateDto.js +0 -58
- package/dist/actions-v2/KnowledgeArticleReleaseNoteCreateDto.d.ts +0 -63
- package/dist/actions-v2/KnowledgeArticleReleaseNoteCreateDto.js +0 -59
- package/dist/actions-v2/KnowledgeArticleUserGuideCreateDto.d.ts +0 -73
- package/dist/actions-v2/KnowledgeArticleUserGuideCreateDto.js +0 -59
- package/dist/actions-v2/ManageCommisionDto.d.ts +0 -91
- package/dist/actions-v2/ManageCommisionDto.js +0 -58
- package/dist/actions-v2/ManageSlaDto.d.ts +0 -94
- package/dist/actions-v2/ManageSlaDto.js +0 -63
- package/dist/actions-v2/MarkCaseClosedDto.d.ts +0 -83
- package/dist/actions-v2/MarkCaseClosedDto.js +0 -58
- package/dist/actions-v2/MarkCaseResolvedDto.d.ts +0 -83
- package/dist/actions-v2/MarkCaseResolvedDto.js +0 -58
- package/dist/actions-v2/MoveBusinessInstallToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveBusinessInstallToCompleteDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallToCompleteDto.js +0 -64
- package/dist/actions-v2/MoveBusinessInstallToEnRouteDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallToEnRouteDto.js +0 -64
- package/dist/actions-v2/MoveBusinessInstallToInProgressDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallToInProgressDto.js +0 -64
- package/dist/actions-v2/MoveBusinessInstallToReadyForInstallationDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallToReadyForInstallationDto.js +0 -64
- package/dist/actions-v2/MoveBusinessInstallToRemediationDto.d.ts +0 -438
- package/dist/actions-v2/MoveBusinessInstallToRemediationDto.js +0 -175
- package/dist/actions-v2/MoveBusinessInstallToSiteSurveyRequiredDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallToSiteSurveyRequiredDto.js +0 -64
- package/dist/actions-v2/MoveBusinessInstallWorkOrderFromReadyToInstallationToScheduledDto.d.ts +0 -72
- package/dist/actions-v2/MoveBusinessInstallWorkOrderFromReadyToInstallationToScheduledDto.js +0 -64
- package/dist/actions-v2/MoveCaseOutageToSolvedAction2Dto.d.ts +0 -95
- package/dist/actions-v2/MoveCaseOutageToSolvedAction2Dto.js +0 -63
- package/dist/actions-v2/MoveCaseOutageToSolvedActionDto.d.ts +0 -95
- package/dist/actions-v2/MoveCaseOutageToSolvedActionDto.js +0 -63
- package/dist/actions-v2/MoveCaseOutageToSolvedTransitionDto.d.ts +0 -72
- package/dist/actions-v2/MoveCaseOutageToSolvedTransitionDto.js +0 -64
- package/dist/actions-v2/MoveCaseToBlockedActionDto.d.ts +0 -96
- package/dist/actions-v2/MoveCaseToBlockedActionDto.js +0 -63
- package/dist/actions-v2/MoveCaseToBlockedTransitionDto.d.ts +0 -196
- package/dist/actions-v2/MoveCaseToBlockedTransitionDto.js +0 -130
- package/dist/actions-v2/MoveCaseToPendingAgentTransitionDto.d.ts +0 -72
- package/dist/actions-v2/MoveCaseToPendingAgentTransitionDto.js +0 -64
- package/dist/actions-v2/MoveCaseToPendingReviewActionDto.d.ts +0 -104
- package/dist/actions-v2/MoveCaseToPendingReviewActionDto.js +0 -63
- package/dist/actions-v2/MoveCaseToPendingReviewTransitionDto.d.ts +0 -204
- package/dist/actions-v2/MoveCaseToPendingReviewTransitionDto.js +0 -130
- package/dist/actions-v2/MoveCaseToSolvedActionDto.d.ts +0 -95
- package/dist/actions-v2/MoveCaseToSolvedActionDto.js +0 -63
- package/dist/actions-v2/MoveCaseToSolvedTransitionDto.d.ts +0 -72
- package/dist/actions-v2/MoveCaseToSolvedTransitionDto.js +0 -64
- package/dist/actions-v2/MoveCashbackRewardToAwardedDto.d.ts +0 -117
- package/dist/actions-v2/MoveCashbackRewardToAwardedDto.js +0 -82
- package/dist/actions-v2/MoveCashbackRewardToFailedDto.d.ts +0 -117
- package/dist/actions-v2/MoveCashbackRewardToFailedDto.js +0 -82
- package/dist/actions-v2/MoveCboToAdditionalApprovalRequiredDto.d.ts +0 -119
- package/dist/actions-v2/MoveCboToAdditionalApprovalRequiredDto.js +0 -84
- package/dist/actions-v2/MoveCboToApprovedDto.d.ts +0 -208
- package/dist/actions-v2/MoveCboToApprovedDto.js +0 -130
- package/dist/actions-v2/MoveCboToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveCboToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveCboToMoreInfoRequiredDto.d.ts +0 -72
- package/dist/actions-v2/MoveCboToMoreInfoRequiredDto.js +0 -64
- package/dist/actions-v2/MoveCboToReceivedDto.d.ts +0 -188
- package/dist/actions-v2/MoveCboToReceivedDto.js +0 -130
- package/dist/actions-v2/MoveCboToRefundProcessedDto.d.ts +0 -72
- package/dist/actions-v2/MoveCboToRefundProcessedDto.js +0 -64
- package/dist/actions-v2/MoveCboToVerifiedDto.d.ts +0 -72
- package/dist/actions-v2/MoveCboToVerifiedDto.js +0 -64
- package/dist/actions-v2/MoveCollectionAmcoToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionAmcoToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveCollectionAmcoToCompleteDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionAmcoToCompleteDto.js +0 -64
- package/dist/actions-v2/MoveCollectionAmcoToErrorDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionAmcoToErrorDto.js +0 -64
- package/dist/actions-v2/MoveCollectionAmcoToFailedInspectionDto.d.ts +0 -115
- package/dist/actions-v2/MoveCollectionAmcoToFailedInspectionDto.js +0 -80
- package/dist/actions-v2/MoveCollectionAmcoToOverriddenDto.d.ts +0 -68
- package/dist/actions-v2/MoveCollectionAmcoToOverriddenDto.js +0 -60
- package/dist/actions-v2/MoveCollectionAmcoToPendingInspectionDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionAmcoToPendingInspectionDto.js +0 -64
- package/dist/actions-v2/MoveCollectionAmcoToPendingReturnDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionAmcoToPendingReturnDto.js +0 -64
- package/dist/actions-v2/MoveCollectionAmcoToReceivedDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionAmcoToReceivedDto.js +0 -64
- package/dist/actions-v2/MoveCollectionWorkOrderFromAcceptedToEnRouteDto.d.ts +0 -186
- package/dist/actions-v2/MoveCollectionWorkOrderFromAcceptedToEnRouteDto.js +0 -130
- package/dist/actions-v2/MoveCollectionWorkOrderFromEnRouteToReceivedDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionWorkOrderFromEnRouteToReceivedDto.js +0 -64
- package/dist/actions-v2/MoveCollectionWorkOrderFromReceivedToCompleteDto.d.ts +0 -260
- package/dist/actions-v2/MoveCollectionWorkOrderFromReceivedToCompleteDto.js +0 -130
- package/dist/actions-v2/MoveCollectionWorkOrderToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveCollectionWorkOrderToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveCollectionWorkOrderToCompleteDto.d.ts +0 -115
- package/dist/actions-v2/MoveCollectionWorkOrderToCompleteDto.js +0 -80
- package/dist/actions-v2/MoveDefaultCaseFromAnyStageToPendingAgentDto.d.ts +0 -117
- package/dist/actions-v2/MoveDefaultCaseFromAnyStageToPendingAgentDto.js +0 -82
- package/dist/actions-v2/MoveDefaultCaseFromAnyStageToPendingReplyDto.d.ts +0 -117
- package/dist/actions-v2/MoveDefaultCaseFromAnyStageToPendingReplyDto.js +0 -82
- package/dist/actions-v2/MoveDefaultCaseFromOpenToClosedDto.d.ts +0 -184
- package/dist/actions-v2/MoveDefaultCaseFromOpenToClosedDto.js +0 -126
- package/dist/actions-v2/MoveDispatchAmcoToCancelledDto.d.ts +0 -70
- package/dist/actions-v2/MoveDispatchAmcoToCancelledDto.js +0 -62
- package/dist/actions-v2/MoveDispatchAmcoToCompleteDto.d.ts +0 -68
- package/dist/actions-v2/MoveDispatchAmcoToCompleteDto.js +0 -60
- package/dist/actions-v2/MoveDispatchAmcoToEnRouteDto.d.ts +0 -68
- package/dist/actions-v2/MoveDispatchAmcoToEnRouteDto.js +0 -60
- package/dist/actions-v2/MoveDispatchAmcoToErrorDto.d.ts +0 -68
- package/dist/actions-v2/MoveDispatchAmcoToErrorDto.js +0 -60
- package/dist/actions-v2/MoveDispatchAmcoToFailedDeliveryDto.d.ts +0 -115
- package/dist/actions-v2/MoveDispatchAmcoToFailedDeliveryDto.js +0 -80
- package/dist/actions-v2/MoveDispatchAmcoToOverriddenDto.d.ts +0 -68
- package/dist/actions-v2/MoveDispatchAmcoToOverriddenDto.js +0 -60
- package/dist/actions-v2/MoveDispatchAmcoToProcessedDto.d.ts +0 -68
- package/dist/actions-v2/MoveDispatchAmcoToProcessedDto.js +0 -60
- package/dist/actions-v2/MoveDispatchAmcoToReceivedDto.d.ts +0 -68
- package/dist/actions-v2/MoveDispatchAmcoToReceivedDto.js +0 -60
- package/dist/actions-v2/MoveFinanceWorkOrderToApprovalDto.d.ts +0 -72
- package/dist/actions-v2/MoveFinanceWorkOrderToApprovalDto.js +0 -64
- package/dist/actions-v2/MoveFinanceWorkOrderToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveFinanceWorkOrderToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveFinanceWorkOrderToCompleteDto.d.ts +0 -72
- package/dist/actions-v2/MoveFinanceWorkOrderToCompleteDto.js +0 -64
- package/dist/actions-v2/MoveFinanceWorkOrderToNeedInformationDto.d.ts +0 -72
- package/dist/actions-v2/MoveFinanceWorkOrderToNeedInformationDto.js +0 -64
- package/dist/actions-v2/MoveFinanceWorkOrderToPurchaseOrderDto.d.ts +0 -72
- package/dist/actions-v2/MoveFinanceWorkOrderToPurchaseOrderDto.js +0 -64
- package/dist/actions-v2/MoveInspectionWorkOrderToCancelledDto.d.ts +0 -70
- package/dist/actions-v2/MoveInspectionWorkOrderToCancelledDto.js +0 -62
- package/dist/actions-v2/MoveInspectionWorkOrderToCompleteDto.d.ts +0 -70
- package/dist/actions-v2/MoveInspectionWorkOrderToCompleteDto.js +0 -62
- package/dist/actions-v2/MoveInspectionWorkOrderToEnRouteDto.d.ts +0 -72
- package/dist/actions-v2/MoveInspectionWorkOrderToEnRouteDto.js +0 -64
- package/dist/actions-v2/MoveInspectionWorkOrderToInProgressDto.d.ts +0 -176
- package/dist/actions-v2/MoveInspectionWorkOrderToInProgressDto.js +0 -126
- package/dist/actions-v2/MoveInspectionWorkOrderToInProgressSubstantialDto.d.ts +0 -574
- package/dist/actions-v2/MoveInspectionWorkOrderToInProgressSubstantialDto.js +0 -128
- package/dist/actions-v2/MoveInspectionWorkOrderToRemediationDto.d.ts +0 -70
- package/dist/actions-v2/MoveInspectionWorkOrderToRemediationDto.js +0 -62
- package/dist/actions-v2/MoveInstallWorkOrderFromInProgressToCompleteDto.d.ts +0 -70
- package/dist/actions-v2/MoveInstallWorkOrderFromInProgressToCompleteDto.js +0 -62
- package/dist/actions-v2/MoveInstallWorkOrderToEnRouteDto.d.ts +0 -180
- package/dist/actions-v2/MoveInstallWorkOrderToEnRouteDto.js +0 -130
- package/dist/actions-v2/MoveInstallWorkOrderToInProgressDto.d.ts +0 -176
- package/dist/actions-v2/MoveInstallWorkOrderToInProgressDto.js +0 -126
- package/dist/actions-v2/MoveInstallWorkOrderToInProgressSubstantialDto.d.ts +0 -574
- package/dist/actions-v2/MoveInstallWorkOrderToInProgressSubstantialDto.js +0 -128
- package/dist/actions-v2/MoveInstallWorkOrderToRemediationDto.d.ts +0 -438
- package/dist/actions-v2/MoveInstallWorkOrderToRemediationDto.js +0 -175
- package/dist/actions-v2/MoveInstallWorkOrderToScheduledDto.d.ts +0 -117
- package/dist/actions-v2/MoveInstallWorkOrderToScheduledDto.js +0 -82
- package/dist/actions-v2/MoveLeadToContactedDto.d.ts +0 -69
- package/dist/actions-v2/MoveLeadToContactedDto.js +0 -61
- package/dist/actions-v2/MoveLeadToLostDto.d.ts +0 -69
- package/dist/actions-v2/MoveLeadToLostDto.js +0 -61
- package/dist/actions-v2/MoveLeadToQualifiedDto.d.ts +0 -69
- package/dist/actions-v2/MoveLeadToQualifiedDto.js +0 -61
- package/dist/actions-v2/MoveLeadToWonDto.d.ts +0 -69
- package/dist/actions-v2/MoveLeadToWonDto.js +0 -61
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToCompleteDto.d.ts +0 -72
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToCompleteDto.js +0 -64
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToNaRaisedDto.d.ts +0 -72
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToNaRaisedDto.js +0 -64
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToNaRejectedDto.d.ts +0 -72
- package/dist/actions-v2/MoveNetworkAdjustmentWorkOrderToNaRejectedDto.js +0 -64
- package/dist/actions-v2/MoveOrderFromAcceptedToScheduledDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderFromAcceptedToScheduledDto.js +0 -61
- package/dist/actions-v2/MoveOrderFromActiveToPendingCancellationDto.d.ts +0 -116
- package/dist/actions-v2/MoveOrderFromActiveToPendingCancellationDto.js +0 -81
- package/dist/actions-v2/MoveOrderFromCancelledToActiveDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderFromCancelledToActiveDto.js +0 -61
- package/dist/actions-v2/MoveOrderFromDeactivatedToActiveDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderFromDeactivatedToActiveDto.js +0 -61
- package/dist/actions-v2/MoveOrderFromDeactivatedToCancelledDto.d.ts +0 -187
- package/dist/actions-v2/MoveOrderFromDeactivatedToCancelledDto.js +0 -123
- package/dist/actions-v2/MoveOrderFromDraftToAnyStageDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderFromDraftToAnyStageDto.js +0 -61
- package/dist/actions-v2/MoveOrderFromPendingCancellationToActiveDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderFromPendingCancellationToActiveDto.js +0 -61
- package/dist/actions-v2/MoveOrderFromPendingCancellationToCancelledDto.d.ts +0 -187
- package/dist/actions-v2/MoveOrderFromPendingCancellationToCancelledDto.js +0 -123
- package/dist/actions-v2/MoveOrderFromPreOrderToCancelledDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderFromPreOrderToCancelledDto.js +0 -61
- package/dist/actions-v2/MoveOrderReferralToCancelledDto.d.ts +0 -117
- package/dist/actions-v2/MoveOrderReferralToCancelledDto.js +0 -82
- package/dist/actions-v2/MoveOrderReferralToCompletedDto.d.ts +0 -117
- package/dist/actions-v2/MoveOrderReferralToCompletedDto.js +0 -82
- package/dist/actions-v2/MoveOrderReferralToNotQualifiedDto.d.ts +0 -117
- package/dist/actions-v2/MoveOrderReferralToNotQualifiedDto.js +0 -82
- package/dist/actions-v2/MoveOrderReferralToPendingActivationDto.d.ts +0 -117
- package/dist/actions-v2/MoveOrderReferralToPendingActivationDto.js +0 -82
- package/dist/actions-v2/MoveOrderReferralToPendingValidationDto.d.ts +0 -117
- package/dist/actions-v2/MoveOrderReferralToPendingValidationDto.js +0 -82
- package/dist/actions-v2/MoveOrderReferralToQualifiedDto.d.ts +0 -117
- package/dist/actions-v2/MoveOrderReferralToQualifiedDto.js +0 -82
- package/dist/actions-v2/MoveOrderToActiveDto.d.ts +0 -192
- package/dist/actions-v2/MoveOrderToActiveDto.js +0 -123
- package/dist/actions-v2/MoveOrderToDeactivatedFromActiveDto.d.ts +0 -69
- package/dist/actions-v2/MoveOrderToDeactivatedFromActiveDto.js +0 -61
- package/dist/actions-v2/MoveOutageToSolvedActionDto.d.ts +0 -72
- package/dist/actions-v2/MoveOutageToSolvedActionDto.js +0 -64
- package/dist/actions-v2/MovePgDisputeToClosedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgDisputeToClosedDto.js +0 -62
- package/dist/actions-v2/MovePgDisputeToLostDto.d.ts +0 -70
- package/dist/actions-v2/MovePgDisputeToLostDto.js +0 -62
- package/dist/actions-v2/MovePgDisputeToUnderReviewDto.d.ts +0 -70
- package/dist/actions-v2/MovePgDisputeToUnderReviewDto.js +0 -62
- package/dist/actions-v2/MovePgDisputeToWonDto.d.ts +0 -70
- package/dist/actions-v2/MovePgDisputeToWonDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToAcknowledgedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToAcknowledgedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToActiveDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToActiveDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToAllocatedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToAllocatedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToCancellationPendingDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToCancellationPendingDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToCancellationRequestedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToCancellationRequestedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToCancelledDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToCancelledDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToFileRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToFileRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToInstructionRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToInstructionRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToInvalidDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToInvalidDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToProcessingDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToProcessingDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToSubmissionFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToSubmissionFailedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToSubmittedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToSubmittedDto.js +0 -62
- package/dist/actions-v2/MovePgPaymentMethodToValidatedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgPaymentMethodToValidatedDto.js +0 -62
- package/dist/actions-v2/MovePgResponseToFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgResponseToFailedDto.js +0 -62
- package/dist/actions-v2/MovePgResponseToProcessedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgResponseToProcessedDto.js +0 -62
- package/dist/actions-v2/MovePgResponseToSavedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgResponseToSavedDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToClosedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToClosedDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToFileAcceptedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToFileAcceptedDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToFileRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToFileRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToProcessedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToProcessedDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToProcessingDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToProcessingDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToSubmissionFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToSubmissionFailedDto.js +0 -62
- package/dist/actions-v2/MovePgSubmissionToSubmittedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgSubmissionToSubmittedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToAcknowledgedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToAcknowledgedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToAllocatedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToAllocatedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToFailedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToFileRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToFileRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToInstructionRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToInstructionRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToProcessingDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToProcessingDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToReadyDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToReadyDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToSubmissionFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToSubmissionFailedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToSubmittedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToSubmittedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionChargeToSucceededDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionChargeToSucceededDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToAcknowledgedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToAcknowledgedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToAllocatedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToAllocatedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToFailedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToFileRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToFileRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToInstructionRejectedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToInstructionRejectedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToProcessingDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToProcessingDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToReadyDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToReadyDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToSubmissionFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToSubmissionFailedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToSubmittedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToSubmittedDto.js +0 -62
- package/dist/actions-v2/MovePgTransactionRefundToSucceededDto.d.ts +0 -70
- package/dist/actions-v2/MovePgTransactionRefundToSucceededDto.js +0 -62
- package/dist/actions-v2/MovePgWebhookToFailedDto.d.ts +0 -70
- package/dist/actions-v2/MovePgWebhookToFailedDto.js +0 -62
- package/dist/actions-v2/MovePgWebhookToRetryingDto.d.ts +0 -70
- package/dist/actions-v2/MovePgWebhookToRetryingDto.js +0 -62
- package/dist/actions-v2/MovePgWebhookToSucceededDto.d.ts +0 -70
- package/dist/actions-v2/MovePgWebhookToSucceededDto.js +0 -62
- package/dist/actions-v2/MovePlanningWorkOrderToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MovePlanningWorkOrderToCancelledDto.js +0 -64
- package/dist/actions-v2/MovePlanningWorkOrderToDesignCompleteDto.d.ts +0 -72
- package/dist/actions-v2/MovePlanningWorkOrderToDesignCompleteDto.js +0 -64
- package/dist/actions-v2/MovePlanningWorkOrderToDesignInProgressDto.d.ts +0 -72
- package/dist/actions-v2/MovePlanningWorkOrderToDesignInProgressDto.js +0 -64
- package/dist/actions-v2/MovePlanningWorkOrderToDesignQcDto.d.ts +0 -72
- package/dist/actions-v2/MovePlanningWorkOrderToDesignQcDto.js +0 -64
- package/dist/actions-v2/MovePlanningWorkOrderToMoreInformationRequiredDto.d.ts +0 -72
- package/dist/actions-v2/MovePlanningWorkOrderToMoreInformationRequiredDto.js +0 -64
- package/dist/actions-v2/MovePlanningWorkOrderToOnHoldDto.d.ts +0 -72
- package/dist/actions-v2/MovePlanningWorkOrderToOnHoldDto.js +0 -64
- package/dist/actions-v2/MovePrePullWorkOrderToEnRouteDto.d.ts +0 -72
- package/dist/actions-v2/MovePrePullWorkOrderToEnRouteDto.js +0 -64
- package/dist/actions-v2/MovePrePullWorkOrderToInProgressDto.d.ts +0 -174
- package/dist/actions-v2/MovePrePullWorkOrderToInProgressDto.js +0 -124
- package/dist/actions-v2/MovePrePullWorkOrderToInProgressSubstantialDto.d.ts +0 -574
- package/dist/actions-v2/MovePrePullWorkOrderToInProgressSubstantialDto.js +0 -128
- package/dist/actions-v2/MovePrePullWorkOrderToRemediationDto.d.ts +0 -438
- package/dist/actions-v2/MovePrePullWorkOrderToRemediationDto.js +0 -175
- package/dist/actions-v2/MoveRemediationWorkOrderToEnRouteDto.d.ts +0 -72
- package/dist/actions-v2/MoveRemediationWorkOrderToEnRouteDto.js +0 -64
- package/dist/actions-v2/MoveRemediationWorkOrderToInProgressDto.d.ts +0 -176
- package/dist/actions-v2/MoveRemediationWorkOrderToInProgressDto.js +0 -126
- package/dist/actions-v2/MoveRemediationWorkOrderToInProgressSubstantialDto.d.ts +0 -574
- package/dist/actions-v2/MoveRemediationWorkOrderToInProgressSubstantialDto.js +0 -128
- package/dist/actions-v2/MoveRemediationWorkOrderToRemediationDto.d.ts +0 -438
- package/dist/actions-v2/MoveRemediationWorkOrderToRemediationDto.js +0 -175
- package/dist/actions-v2/MoveServiceWorkOrderFromAcceptedToScheduledDto.d.ts +0 -72
- package/dist/actions-v2/MoveServiceWorkOrderFromAcceptedToScheduledDto.js +0 -64
- package/dist/actions-v2/MoveServiceWorkOrderToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveServiceWorkOrderToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveServiceWorkOrderToEnRouteDto.d.ts +0 -70
- package/dist/actions-v2/MoveServiceWorkOrderToEnRouteDto.js +0 -62
- package/dist/actions-v2/MoveServiceWorkOrderToInProgressDto.d.ts +0 -176
- package/dist/actions-v2/MoveServiceWorkOrderToInProgressDto.js +0 -126
- package/dist/actions-v2/MoveServiceWorkOrderToInProgressSubstantialDto.d.ts +0 -574
- package/dist/actions-v2/MoveServiceWorkOrderToInProgressSubstantialDto.js +0 -128
- package/dist/actions-v2/MoveServiceWorkOrderToRemediationDto.d.ts +0 -438
- package/dist/actions-v2/MoveServiceWorkOrderToRemediationDto.js +0 -175
- package/dist/actions-v2/MoveWayleaveWorkOrderToAwaitingPtdDto.d.ts +0 -72
- package/dist/actions-v2/MoveWayleaveWorkOrderToAwaitingPtdDto.js +0 -64
- package/dist/actions-v2/MoveWayleaveWorkOrderToCancelledDto.d.ts +0 -72
- package/dist/actions-v2/MoveWayleaveWorkOrderToCancelledDto.js +0 -64
- package/dist/actions-v2/MoveWayleaveWorkOrderToCompleteDto.d.ts +0 -72
- package/dist/actions-v2/MoveWayleaveWorkOrderToCompleteDto.js +0 -64
- package/dist/actions-v2/MoveWayleaveWorkOrderToInReviewDto.d.ts +0 -72
- package/dist/actions-v2/MoveWayleaveWorkOrderToInReviewDto.js +0 -64
- package/dist/actions-v2/MoveWayleaveWorkOrderToNeedInformationDto.d.ts +0 -72
- package/dist/actions-v2/MoveWayleaveWorkOrderToNeedInformationDto.js +0 -64
- package/dist/actions-v2/MoveWayleaveWorkOrderToSubmittedDto.d.ts +0 -72
- package/dist/actions-v2/MoveWayleaveWorkOrderToSubmittedDto.js +0 -64
- package/dist/actions-v2/MovetoClosedDto.d.ts +0 -68
- package/dist/actions-v2/MovetoClosedDto.js +0 -60
- package/dist/actions-v2/NewAppointmentDto.d.ts +0 -103
- package/dist/actions-v2/NewAppointmentDto.js +0 -56
- package/dist/actions-v2/OderUpdateDto.d.ts +0 -65
- package/dist/actions-v2/OderUpdateDto.js +0 -58
- package/dist/actions-v2/OfferCreateDto.d.ts +0 -146
- package/dist/actions-v2/OfferCreateDto.js +0 -56
- package/dist/actions-v2/OfferUpdateDto.d.ts +0 -151
- package/dist/actions-v2/OfferUpdateDto.js +0 -58
- package/dist/actions-v2/OrderItemUpdateDto.d.ts +0 -102
- package/dist/actions-v2/OrderItemUpdateDto.js +0 -58
- package/dist/actions-v2/OverlayA55UpdateDto.d.ts +0 -253
- package/dist/actions-v2/OverlayA55UpdateDto.js +0 -58
- package/dist/actions-v2/OverrideMovePicToInProgressDto.d.ts +0 -72
- package/dist/actions-v2/OverrideMovePicToInProgressDto.js +0 -64
- package/dist/actions-v2/PriceBookCreateActionDto.d.ts +0 -93
- package/dist/actions-v2/PriceBookCreateActionDto.js +0 -56
- package/dist/actions-v2/PriceBookDeleteDto.d.ts +0 -13
- package/dist/actions-v2/PriceBookDeleteDto.js +0 -14
- package/dist/actions-v2/PriceBookUpdateActionDto.d.ts +0 -98
- package/dist/actions-v2/PriceBookUpdateActionDto.js +0 -58
- package/dist/actions-v2/PriceMatchDto.d.ts +0 -83
- package/dist/actions-v2/PriceMatchDto.js +0 -58
- package/dist/actions-v2/ReActionReturnCompletionDto.d.ts +0 -74
- package/dist/actions-v2/ReActionReturnCompletionDto.js +0 -56
- package/dist/actions-v2/ReactivateOrderAfterRollbackDto.d.ts +0 -70
- package/dist/actions-v2/ReactivateOrderAfterRollbackDto.js +0 -62
- package/dist/actions-v2/ReassociateOrderItemDevicesDto.d.ts +0 -66
- package/dist/actions-v2/ReassociateOrderItemDevicesDto.js +0 -59
- package/dist/actions-v2/RemoveAssignmentFromCaseDto.d.ts +0 -80
- package/dist/actions-v2/RemoveAssignmentFromCaseDto.js +0 -63
- package/dist/actions-v2/ReopenConversationDto.d.ts +0 -94
- package/dist/actions-v2/ReopenConversationDto.js +0 -61
- package/dist/actions-v2/RequestToReplaceOntDto.d.ts +0 -167
- package/dist/actions-v2/RequestToReplaceOntDto.js +0 -120
- package/dist/actions-v2/RescheduleBusinessInstallWorkOrderSupplierDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleBusinessInstallWorkOrderSupplierDto.js +0 -125
- package/dist/actions-v2/RescheduleBusinessInstallWorkOrderTenantDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleBusinessInstallWorkOrderTenantDto.js +0 -125
- package/dist/actions-v2/RescheduleCollectionWorkOrderTenantDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleCollectionWorkOrderTenantDto.js +0 -125
- package/dist/actions-v2/RescheduleInspectionWorkOrderSupplierDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleInspectionWorkOrderSupplierDto.js +0 -125
- package/dist/actions-v2/RescheduleInstallWorkOrderSupplierDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleInstallWorkOrderSupplierDto.js +0 -125
- package/dist/actions-v2/RescheduleInstallWorkOrderTenantDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleInstallWorkOrderTenantDto.js +0 -125
- package/dist/actions-v2/ReschedulePrePullWorkOrderSupplierDto.d.ts +0 -188
- package/dist/actions-v2/ReschedulePrePullWorkOrderSupplierDto.js +0 -125
- package/dist/actions-v2/RescheduleRemediationWorkOrderSupplierDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleRemediationWorkOrderSupplierDto.js +0 -125
- package/dist/actions-v2/RescheduleServiceWorkOrderSupplierDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleServiceWorkOrderSupplierDto.js +0 -125
- package/dist/actions-v2/RescheduleServiceWorkOrderTenantDto.d.ts +0 -188
- package/dist/actions-v2/RescheduleServiceWorkOrderTenantDto.js +0 -125
- package/dist/actions-v2/ResendCollectionAmcoWorkOrderToAmcoDto.d.ts +0 -81
- package/dist/actions-v2/ResendCollectionAmcoWorkOrderToAmcoDto.js +0 -63
- package/dist/actions-v2/ResendDispatchAmcoWorkOrderToAmcoDto.d.ts +0 -77
- package/dist/actions-v2/ResendDispatchAmcoWorkOrderToAmcoDto.js +0 -59
- package/dist/actions-v2/ScheduleSlotCreateDto.d.ts +0 -158
- package/dist/actions-v2/ScheduleSlotCreateDto.js +0 -61
- package/dist/actions-v2/ScheduleSlotUpdateDto.d.ts +0 -155
- package/dist/actions-v2/ScheduleSlotUpdateDto.js +0 -63
- package/dist/actions-v2/SelectRelatedPaymentmethodDto.d.ts +0 -65
- package/dist/actions-v2/SelectRelatedPaymentmethodDto.js +0 -61
- package/dist/actions-v2/SendTlosNinjaCaseEmailDto.d.ts +0 -124
- package/dist/actions-v2/SendTlosNinjaCaseEmailDto.js +0 -59
- package/dist/actions-v2/SentToVoyagerDto.d.ts +0 -75
- package/dist/actions-v2/SentToVoyagerDto.js +0 -58
- package/dist/actions-v2/SetAmcoRequestDateTimeDto.d.ts +0 -70
- package/dist/actions-v2/SetAmcoRequestDateTimeDto.js +0 -54
- package/dist/actions-v2/SetInvoiceDunningBrqRequestDto.d.ts +0 -92
- package/dist/actions-v2/SetInvoiceDunningBrqRequestDto.js +0 -58
- package/dist/actions-v2/SetInvoiceDunningOtpCreatedDto.d.ts +0 -83
- package/dist/actions-v2/SetInvoiceDunningOtpCreatedDto.js +0 -58
- package/dist/actions-v2/SetInvoiceDunningPaymentFailedDto.d.ts +0 -91
- package/dist/actions-v2/SetInvoiceDunningPaymentFailedDto.js +0 -58
- package/dist/actions-v2/SetInvoiceFinalDunningReminderDto.d.ts +0 -98
- package/dist/actions-v2/SetInvoiceFinalDunningReminderDto.js +0 -58
- package/dist/actions-v2/SetInvoiceInitialDunningReminderDto.d.ts +0 -90
- package/dist/actions-v2/SetInvoiceInitialDunningReminderDto.js +0 -58
- package/dist/actions-v2/SetInvoicePaidFromOtpDto.d.ts +0 -109
- package/dist/actions-v2/SetInvoicePaidFromOtpDto.js +0 -59
- package/dist/actions-v2/SetOrderCancelOnDateDto.d.ts +0 -74
- package/dist/actions-v2/SetOrderCancelOnDateDto.js +0 -58
- package/dist/actions-v2/SetOrderDeactivateOnDateDto.d.ts +0 -75
- package/dist/actions-v2/SetOrderDeactivateOnDateDto.js +0 -58
- package/dist/actions-v2/SetPaymentLinkDto.d.ts +0 -76
- package/dist/actions-v2/SetPaymentLinkDto.js +0 -59
- package/dist/actions-v2/SetPaymentPendingDto.d.ts +0 -67
- package/dist/actions-v2/SetPaymentPendingDto.js +0 -60
- package/dist/actions-v2/SetPaymentProcessingDto.d.ts +0 -70
- package/dist/actions-v2/SetPaymentProcessingDto.js +0 -62
- package/dist/actions-v2/SetPendingAmcoWorkOrderDto.d.ts +0 -84
- package/dist/actions-v2/SetPendingAmcoWorkOrderDto.js +0 -54
- package/dist/actions-v2/StageChangeTestEntityForVisualBuilderDto.d.ts +0 -244
- package/dist/actions-v2/StageChangeTestEntityForVisualBuilderDto.js +0 -122
- package/dist/actions-v2/StartBillingRequestFlowDto.d.ts +0 -97
- package/dist/actions-v2/StartBillingRequestFlowDto.js +0 -58
- package/dist/actions-v2/TestAction123321Dto.d.ts +0 -65
- package/dist/actions-v2/TestAction123321Dto.js +0 -61
- package/dist/actions-v2/TransactionCreateDto.d.ts +0 -109
- package/dist/actions-v2/TransactionCreateDto.js +0 -56
- package/dist/actions-v2/TransactionUpdateDto.d.ts +0 -110
- package/dist/actions-v2/TransactionUpdateDto.js +0 -58
- package/dist/actions-v2/UpdateAccountCreditBalanceDto.d.ts +0 -63
- package/dist/actions-v2/UpdateAccountCreditBalanceDto.js +0 -56
- package/dist/actions-v2/UpdateActivityDateDto.d.ts +0 -76
- package/dist/actions-v2/UpdateActivityDateDto.js +0 -58
- package/dist/actions-v2/UpdateAdditionalCareDto.d.ts +0 -117
- package/dist/actions-v2/UpdateAdditionalCareDto.js +0 -58
- package/dist/actions-v2/UpdateAddressDataSetDto.d.ts +0 -94
- package/dist/actions-v2/UpdateAddressDataSetDto.js +0 -63
- package/dist/actions-v2/UpdateAddressFromBrskDto.d.ts +0 -61
- package/dist/actions-v2/UpdateAddressFromBrskDto.js +0 -54
- package/dist/actions-v2/UpdateBillingRequestTransactionStatusDto.d.ts +0 -75
- package/dist/actions-v2/UpdateBillingRequestTransactionStatusDto.js +0 -58
- package/dist/actions-v2/UpdateBundleProductActionDto.d.ts +0 -345
- package/dist/actions-v2/UpdateBundleProductActionDto.js +0 -63
- package/dist/actions-v2/UpdateBusinessAccountDto.d.ts +0 -86
- package/dist/actions-v2/UpdateBusinessAccountDto.js +0 -63
- package/dist/actions-v2/UpdateCallDto.d.ts +0 -72
- package/dist/actions-v2/UpdateCallDto.js +0 -56
- package/dist/actions-v2/UpdateCallTranscriptionUrlDto.d.ts +0 -73
- package/dist/actions-v2/UpdateCallTranscriptionUrlDto.js +0 -56
- package/dist/actions-v2/UpdateCancellationReasonDefaultDto.d.ts +0 -87
- package/dist/actions-v2/UpdateCancellationReasonDefaultDto.js +0 -63
- package/dist/actions-v2/UpdateConfigDto.d.ts +0 -81
- package/dist/actions-v2/UpdateConfigDto.js +0 -58
- package/dist/actions-v2/UpdateContactDto.d.ts +0 -190
- package/dist/actions-v2/UpdateContactDto.js +0 -58
- package/dist/actions-v2/UpdateConversationDto.d.ts +0 -82
- package/dist/actions-v2/UpdateConversationDto.js +0 -58
- package/dist/actions-v2/UpdateConversationSummaryDto.d.ts +0 -78
- package/dist/actions-v2/UpdateConversationSummaryDto.js +0 -61
- package/dist/actions-v2/UpdateCustomerDeviceOntDto.d.ts +0 -138
- package/dist/actions-v2/UpdateCustomerDeviceOntDto.js +0 -58
- package/dist/actions-v2/UpdateDefaultWorkOrderDto.d.ts +0 -156
- package/dist/actions-v2/UpdateDefaultWorkOrderDto.js +0 -63
- package/dist/actions-v2/UpdateDispatchAmcoWorkOrderDto.d.ts +0 -105
- package/dist/actions-v2/UpdateDispatchAmcoWorkOrderDto.js +0 -59
- package/dist/actions-v2/UpdateDto.d.ts +0 -205
- package/dist/actions-v2/UpdateDto.js +0 -56
- package/dist/actions-v2/UpdateEmailDto.d.ts +0 -191
- package/dist/actions-v2/UpdateEmailDto.js +0 -56
- package/dist/actions-v2/UpdateEmailSenderDto.d.ts +0 -79
- package/dist/actions-v2/UpdateEmailSenderDto.js +0 -56
- package/dist/actions-v2/UpdateEmailTemplateDto.d.ts +0 -95
- package/dist/actions-v2/UpdateEmailTemplateDto.js +0 -63
- package/dist/actions-v2/UpdateFormalComplaintDto.d.ts +0 -99
- package/dist/actions-v2/UpdateFormalComplaintDto.js +0 -54
- package/dist/actions-v2/UpdateInspectionDto.d.ts +0 -155
- package/dist/actions-v2/UpdateInspectionDto.js +0 -63
- package/dist/actions-v2/UpdateInspectionWorkOrderDto.d.ts +0 -79
- package/dist/actions-v2/UpdateInspectionWorkOrderDto.js +0 -63
- package/dist/actions-v2/UpdateInstallScheduleDto.d.ts +0 -161
- package/dist/actions-v2/UpdateInstallScheduleDto.js +0 -63
- package/dist/actions-v2/UpdateInternetProductActionDto.d.ts +0 -359
- package/dist/actions-v2/UpdateInternetProductActionDto.js +0 -63
- package/dist/actions-v2/UpdateLaborProductActionDto.d.ts +0 -360
- package/dist/actions-v2/UpdateLaborProductActionDto.js +0 -63
- package/dist/actions-v2/UpdateLandlineProductActionDto.d.ts +0 -352
- package/dist/actions-v2/UpdateLandlineProductActionDto.js +0 -63
- package/dist/actions-v2/UpdateLeadDto.d.ts +0 -83
- package/dist/actions-v2/UpdateLeadDto.js +0 -58
- package/dist/actions-v2/UpdateLosingOneTouchSwitchOrderDto.d.ts +0 -156
- package/dist/actions-v2/UpdateLosingOneTouchSwitchOrderDto.js +0 -63
- package/dist/actions-v2/UpdateMeshProductActionDto.d.ts +0 -352
- package/dist/actions-v2/UpdateMeshProductActionDto.js +0 -63
- package/dist/actions-v2/UpdateMobileProductActionDto.d.ts +0 -345
- package/dist/actions-v2/UpdateMobileProductActionDto.js +0 -63
- package/dist/actions-v2/UpdateNoteDto.d.ts +0 -91
- package/dist/actions-v2/UpdateNoteDto.js +0 -61
- package/dist/actions-v2/UpdateOneTouchSwitchOrderDto.d.ts +0 -156
- package/dist/actions-v2/UpdateOneTouchSwitchOrderDto.js +0 -63
- package/dist/actions-v2/UpdateOrderCampaignDto.d.ts +0 -77
- package/dist/actions-v2/UpdateOrderCampaignDto.js +0 -61
- package/dist/actions-v2/UpdateOrderDto.d.ts +0 -81
- package/dist/actions-v2/UpdateOrderDto.js +0 -58
- package/dist/actions-v2/UpdateOverrideCollectionAmcoOrderDto.d.ts +0 -75
- package/dist/actions-v2/UpdateOverrideCollectionAmcoOrderDto.js +0 -59
- package/dist/actions-v2/UpdateOverrideDispatchAmcoOrderDto.d.ts +0 -75
- package/dist/actions-v2/UpdateOverrideDispatchAmcoOrderDto.js +0 -59
- package/dist/actions-v2/UpdatePaymentMethodDto.d.ts +0 -83
- package/dist/actions-v2/UpdatePaymentMethodDto.js +0 -58
- package/dist/actions-v2/UpdatePgAllocationWithAcknowledgementOneDto.d.ts +0 -85
- package/dist/actions-v2/UpdatePgAllocationWithAcknowledgementOneDto.js +0 -61
- package/dist/actions-v2/UpdatePgAllocationWithAcknowledgementTwoDto.d.ts +0 -85
- package/dist/actions-v2/UpdatePgAllocationWithAcknowledgementTwoDto.js +0 -61
- package/dist/actions-v2/UpdatePgAllocationWithBacsReportDto.d.ts +0 -85
- package/dist/actions-v2/UpdatePgAllocationWithBacsReportDto.js +0 -61
- package/dist/actions-v2/UpdatePgContactDto.d.ts +0 -105
- package/dist/actions-v2/UpdatePgContactDto.js +0 -61
- package/dist/actions-v2/UpdatePgFileAllocationDto.d.ts +0 -91
- package/dist/actions-v2/UpdatePgFileAllocationDto.js +0 -61
- package/dist/actions-v2/UpdatePgPaymentMethodActivatedDatetimeDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgPaymentMethodActivatedDatetimeDto.js +0 -61
- package/dist/actions-v2/UpdatePgPaymentMethodDto.d.ts +0 -168
- package/dist/actions-v2/UpdatePgPaymentMethodDto.js +0 -61
- package/dist/actions-v2/UpdatePgPaymentMethodFirstTransactionProcessedDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgPaymentMethodFirstTransactionProcessedDto.js +0 -61
- package/dist/actions-v2/UpdatePgPaymentMethodMessageDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgPaymentMethodMessageDto.js +0 -61
- package/dist/actions-v2/UpdatePgPaymentMethodValidatedDatetimeDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgPaymentMethodValidatedDatetimeDto.js +0 -61
- package/dist/actions-v2/UpdatePgResponseCompanyDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgResponseCompanyDto.js +0 -61
- package/dist/actions-v2/UpdatePgResponseDto.d.ts +0 -98
- package/dist/actions-v2/UpdatePgResponseDto.js +0 -61
- package/dist/actions-v2/UpdatePgResponseFileReferenceNumberDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgResponseFileReferenceNumberDto.js +0 -61
- package/dist/actions-v2/UpdatePgResponseMessageDto.d.ts +0 -78
- package/dist/actions-v2/UpdatePgResponseMessageDto.js +0 -61
- package/dist/actions-v2/UpdatePgSubmissionDto.d.ts +0 -126
- package/dist/actions-v2/UpdatePgSubmissionDto.js +0 -61
- package/dist/actions-v2/UpdatePgTransactionChargeDto.d.ts +0 -140
- package/dist/actions-v2/UpdatePgTransactionChargeDto.js +0 -61
- package/dist/actions-v2/UpdatePgTransactionMessageDto.d.ts +0 -73
- package/dist/actions-v2/UpdatePgTransactionMessageDto.js +0 -56
- package/dist/actions-v2/UpdatePgTransactionRefundDto.d.ts +0 -140
- package/dist/actions-v2/UpdatePgTransactionRefundDto.js +0 -61
- package/dist/actions-v2/UpdatePrePullScheduleDto.d.ts +0 -155
- package/dist/actions-v2/UpdatePrePullScheduleDto.js +0 -63
- package/dist/actions-v2/UpdatePrimaryAccountDto.d.ts +0 -95
- package/dist/actions-v2/UpdatePrimaryAccountDto.js +0 -63
- package/dist/actions-v2/UpdatePushNotificationDto.d.ts +0 -163
- package/dist/actions-v2/UpdatePushNotificationDto.js +0 -56
- package/dist/actions-v2/UpdateReferralCodeDto.d.ts +0 -72
- package/dist/actions-v2/UpdateReferralCodeDto.js +0 -56
- package/dist/actions-v2/UpdateRemediationDto.d.ts +0 -153
- package/dist/actions-v2/UpdateRemediationDto.js +0 -61
- package/dist/actions-v2/UpdateRemediationWorkOrderDto.d.ts +0 -79
- package/dist/actions-v2/UpdateRemediationWorkOrderDto.js +0 -63
- package/dist/actions-v2/UpdateResellerAccountDto.d.ts +0 -86
- package/dist/actions-v2/UpdateResellerAccountDto.js +0 -63
- package/dist/actions-v2/UpdateSaDelayReasonDefaultDto.d.ts +0 -87
- package/dist/actions-v2/UpdateSaDelayReasonDefaultDto.js +0 -63
- package/dist/actions-v2/UpdateSaInformReasonDefaultDto.d.ts +0 -87
- package/dist/actions-v2/UpdateSaInformReasonDefaultDto.js +0 -63
- package/dist/actions-v2/UpdateSaRescheduleReasonDefaultDto.d.ts +0 -87
- package/dist/actions-v2/UpdateSaRescheduleReasonDefaultDto.js +0 -63
- package/dist/actions-v2/UpdateSentimentDto.d.ts +0 -75
- package/dist/actions-v2/UpdateSentimentDto.js +0 -58
- package/dist/actions-v2/UpdateServiceDto.d.ts +0 -132
- package/dist/actions-v2/UpdateServiceDto.js +0 -58
- package/dist/actions-v2/UpdateServiceScheduleDto.d.ts +0 -155
- package/dist/actions-v2/UpdateServiceScheduleDto.js +0 -63
- package/dist/actions-v2/UpdateSetReturnedLegacyDto.d.ts +0 -140
- package/dist/actions-v2/UpdateSetReturnedLegacyDto.js +0 -54
- package/dist/actions-v2/UpdateSsraDto.d.ts +0 -474
- package/dist/actions-v2/UpdateSsraDto.js +0 -58
- package/dist/actions-v2/UpdateSupplierReferenceDto.d.ts +0 -71
- package/dist/actions-v2/UpdateSupplierReferenceDto.js +0 -54
- package/dist/actions-v2/UpdateSupportEmailDto.d.ts +0 -150
- package/dist/actions-v2/UpdateSupportEmailDto.js +0 -63
- package/dist/actions-v2/UpdateTagsDto.d.ts +0 -75
- package/dist/actions-v2/UpdateTagsDto.js +0 -58
- package/dist/actions-v2/UpdateTeamDto.d.ts +0 -137
- package/dist/actions-v2/UpdateTeamDto.js +0 -58
- package/dist/actions-v2/UpdateTelevisionProductActionDto.d.ts +0 -357
- package/dist/actions-v2/UpdateTelevisionProductActionDto.js +0 -61
- package/dist/actions-v2/UpdateTestEntityForVisualBuilderDto.d.ts +0 -98
- package/dist/actions-v2/UpdateTestEntityForVisualBuilderDto.js +0 -61
- package/dist/actions-v2/UpdateTimeSlotDto.d.ts +0 -158
- package/dist/actions-v2/UpdateTimeSlotDto.js +0 -58
- package/dist/actions-v2/UpdateTransactionExternalRefDto.d.ts +0 -76
- package/dist/actions-v2/UpdateTransactionExternalRefDto.js +0 -59
- package/dist/actions-v2/UpdateUserDto.d.ts +0 -151
- package/dist/actions-v2/UpdateUserDto.js +0 -58
- package/dist/actions-v2/UpdateVoiceConfigurationDto.d.ts +0 -194
- package/dist/actions-v2/UpdateVoiceConfigurationDto.js +0 -58
- package/dist/actions-v2/UpdateWayleaveWorkOrderDto.d.ts +0 -79
- package/dist/actions-v2/UpdateWayleaveWorkOrderDto.js +0 -63
- package/dist/actions-v2/UpdateYfStockAuditDto.d.ts +0 -145
- package/dist/actions-v2/UpdateYfStockAuditDto.js +0 -56
- package/dist/actions-v2/VisitCreateDto.d.ts +0 -107
- package/dist/actions-v2/VisitCreateDto.js +0 -56
- package/dist/actions-v2/VisitUpdateDto.d.ts +0 -103
- package/dist/actions-v2/VisitUpdateDto.js +0 -58
- package/dist/actions-v2/VoiceConfigUpdateDto.d.ts +0 -107
- package/dist/actions-v2/VoiceConfigUpdateDto.js +0 -58
- package/dist/actions-v2/VoidPaymentDto.d.ts +0 -70
- package/dist/actions-v2/VoidPaymentDto.js +0 -62
- package/dist/api-sdk-v2/AccountApi.d.ts +0 -72
- package/dist/api-sdk-v2/AccountApi.js +0 -227
- package/dist/api-sdk-v2/AccountCreditApi.d.ts +0 -50
- package/dist/api-sdk-v2/AccountCreditApi.js +0 -161
- package/dist/api-sdk-v2/AddressApi.d.ts +0 -84
- package/dist/api-sdk-v2/AddressApi.js +0 -263
- package/dist/api-sdk-v2/AffiliateCodeApi.d.ts +0 -54
- package/dist/api-sdk-v2/AffiliateCodeApi.js +0 -173
- package/dist/api-sdk-v2/AppointmentApi.d.ts +0 -60
- package/dist/api-sdk-v2/AppointmentApi.js +0 -191
- package/dist/api-sdk-v2/AppointmentCalendarApi.d.ts +0 -45
- package/dist/api-sdk-v2/AppointmentCalendarApi.js +0 -151
- package/dist/api-sdk-v2/BillingAdjustmentApi.d.ts +0 -54
- package/dist/api-sdk-v2/BillingAdjustmentApi.js +0 -173
- package/dist/api-sdk-v2/BillingRequestApi.d.ts +0 -60
- package/dist/api-sdk-v2/BillingRequestApi.js +0 -191
- package/dist/api-sdk-v2/BlockageA55Api.d.ts +0 -54
- package/dist/api-sdk-v2/BlockageA55Api.js +0 -173
- package/dist/api-sdk-v2/BlockageReportA55Api.d.ts +0 -52
- package/dist/api-sdk-v2/BlockageReportA55Api.js +0 -167
- package/dist/api-sdk-v2/BrskEntityMigrationErrorApi.d.ts +0 -45
- package/dist/api-sdk-v2/BrskEntityMigrationErrorApi.js +0 -151
- package/dist/api-sdk-v2/CalendarApi.d.ts +0 -45
- package/dist/api-sdk-v2/CalendarApi.js +0 -151
- package/dist/api-sdk-v2/CallApi.d.ts +0 -66
- package/dist/api-sdk-v2/CallApi.js +0 -209
- package/dist/api-sdk-v2/CallEventApi.d.ts +0 -52
- package/dist/api-sdk-v2/CallEventApi.js +0 -167
- package/dist/api-sdk-v2/CallLegApi.d.ts +0 -58
- package/dist/api-sdk-v2/CallLegApi.js +0 -185
- package/dist/api-sdk-v2/CallTransferApi.d.ts +0 -60
- package/dist/api-sdk-v2/CallTransferApi.js +0 -191
- package/dist/api-sdk-v2/CallUpdatesApi.d.ts +0 -45
- package/dist/api-sdk-v2/CallUpdatesApi.js +0 -151
- package/dist/api-sdk-v2/CampaignApi.d.ts +0 -52
- package/dist/api-sdk-v2/CampaignApi.js +0 -167
- package/dist/api-sdk-v2/CaseActionApi.d.ts +0 -48
- package/dist/api-sdk-v2/CaseActionApi.js +0 -155
- package/dist/api-sdk-v2/CaseApi.d.ts +0 -98
- package/dist/api-sdk-v2/CaseApi.js +0 -305
- package/dist/api-sdk-v2/CaseQueueListViewApi.d.ts +0 -45
- package/dist/api-sdk-v2/CaseQueueListViewApi.js +0 -151
- package/dist/api-sdk-v2/ChangeReasonApi.d.ts +0 -56
- package/dist/api-sdk-v2/ChangeReasonApi.js +0 -179
- package/dist/api-sdk-v2/ChurnRequestApi.d.ts +0 -50
- package/dist/api-sdk-v2/ChurnRequestApi.js +0 -161
- package/dist/api-sdk-v2/CommissionApi.d.ts +0 -54
- package/dist/api-sdk-v2/CommissionApi.js +0 -173
- package/dist/api-sdk-v2/ConsumptionRateApi.d.ts +0 -50
- package/dist/api-sdk-v2/ConsumptionRateApi.js +0 -161
- package/dist/api-sdk-v2/ConsumptionScheduleApi.d.ts +0 -52
- package/dist/api-sdk-v2/ConsumptionScheduleApi.js +0 -167
- package/dist/api-sdk-v2/ContactApi.d.ts +0 -118
- package/dist/api-sdk-v2/ContactApi.js +0 -365
- package/dist/api-sdk-v2/ContactIdentityApi.d.ts +0 -54
- package/dist/api-sdk-v2/ContactIdentityApi.js +0 -173
- package/dist/api-sdk-v2/ContractBuyOutApi.d.ts +0 -60
- package/dist/api-sdk-v2/ContractBuyOutApi.js +0 -191
- package/dist/api-sdk-v2/ConversationApi.d.ts +0 -54
- package/dist/api-sdk-v2/ConversationApi.js +0 -173
- package/dist/api-sdk-v2/ConversationFeedbackApi.d.ts +0 -54
- package/dist/api-sdk-v2/ConversationFeedbackApi.js +0 -173
- package/dist/api-sdk-v2/CreditNoteApi.d.ts +0 -54
- package/dist/api-sdk-v2/CreditNoteApi.js +0 -173
- package/dist/api-sdk-v2/CrmDatasetApi.d.ts +0 -60
- package/dist/api-sdk-v2/CrmDatasetApi.js +0 -191
- package/dist/api-sdk-v2/CustomerDeviceAtaApi.d.ts +0 -48
- package/dist/api-sdk-v2/CustomerDeviceAtaApi.js +0 -155
- package/dist/api-sdk-v2/CustomerDeviceConfigurationApi.d.ts +0 -50
- package/dist/api-sdk-v2/CustomerDeviceConfigurationApi.js +0 -161
- package/dist/api-sdk-v2/CustomerDeviceOntApi.d.ts +0 -66
- package/dist/api-sdk-v2/CustomerDeviceOntApi.js +0 -209
- package/dist/api-sdk-v2/CustomerDeviceOntRemovalApi.d.ts +0 -50
- package/dist/api-sdk-v2/CustomerDeviceOntRemovalApi.js +0 -161
- package/dist/api-sdk-v2/CustomerDeviceRouterApi.d.ts +0 -60
- package/dist/api-sdk-v2/CustomerDeviceRouterApi.js +0 -191
- package/dist/api-sdk-v2/CustomerPhonePortingApi.d.ts +0 -48
- package/dist/api-sdk-v2/CustomerPhonePortingApi.js +0 -155
- package/dist/api-sdk-v2/DeactivationApprovalApi.d.ts +0 -52
- package/dist/api-sdk-v2/DeactivationApprovalApi.js +0 -167
- package/dist/api-sdk-v2/DiscountApi.d.ts +0 -58
- package/dist/api-sdk-v2/DiscountApi.js +0 -185
- package/dist/api-sdk-v2/EmailApi.d.ts +0 -62
- package/dist/api-sdk-v2/EmailApi.js +0 -197
- package/dist/api-sdk-v2/EmailSenderApi.d.ts +0 -48
- package/dist/api-sdk-v2/EmailSenderApi.js +0 -155
- package/dist/api-sdk-v2/EmailTemplateApi.d.ts +0 -45
- package/dist/api-sdk-v2/EmailTemplateApi.js +0 -151
- package/dist/api-sdk-v2/EngineerApi.d.ts +0 -45
- package/dist/api-sdk-v2/EngineerApi.js +0 -151
- package/dist/api-sdk-v2/ExchangeApi.d.ts +0 -52
- package/dist/api-sdk-v2/ExchangeApi.js +0 -167
- package/dist/api-sdk-v2/FieldServiceDispatchedProductApi.d.ts +0 -54
- package/dist/api-sdk-v2/FieldServiceDispatchedProductApi.js +0 -173
- package/dist/api-sdk-v2/FieldServiceProductApi.d.ts +0 -58
- package/dist/api-sdk-v2/FieldServiceProductApi.js +0 -185
- package/dist/api-sdk-v2/FileApi.d.ts +0 -174
- package/dist/api-sdk-v2/FileApi.js +0 -533
- package/dist/api-sdk-v2/FingerprintApi.d.ts +0 -54
- package/dist/api-sdk-v2/FingerprintApi.js +0 -173
- package/dist/api-sdk-v2/ImpersonationTrackerApi.d.ts +0 -50
- package/dist/api-sdk-v2/ImpersonationTrackerApi.js +0 -161
- package/dist/api-sdk-v2/InternalInstallAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/InternalInstallAuditApi.js +0 -167
- package/dist/api-sdk-v2/InvoiceApi.d.ts +0 -82
- package/dist/api-sdk-v2/InvoiceApi.js +0 -257
- package/dist/api-sdk-v2/InvoiceItemApi.d.ts +0 -50
- package/dist/api-sdk-v2/InvoiceItemApi.js +0 -161
- package/dist/api-sdk-v2/KnowledgeArticleApi.d.ts +0 -52
- package/dist/api-sdk-v2/KnowledgeArticleApi.js +0 -167
- package/dist/api-sdk-v2/LeadApi.d.ts +0 -78
- package/dist/api-sdk-v2/LeadApi.js +0 -245
- package/dist/api-sdk-v2/LinearIssueApi.d.ts +0 -45
- package/dist/api-sdk-v2/LinearIssueApi.js +0 -151
- package/dist/api-sdk-v2/McPendingEventApi.d.ts +0 -48
- package/dist/api-sdk-v2/McPendingEventApi.js +0 -155
- package/dist/api-sdk-v2/MessageApi.d.ts +0 -52
- package/dist/api-sdk-v2/MessageApi.js +0 -167
- package/dist/api-sdk-v2/MilestoneApi.d.ts +0 -54
- package/dist/api-sdk-v2/MilestoneApi.js +0 -173
- package/dist/api-sdk-v2/MobileCdrApi.d.ts +0 -45
- package/dist/api-sdk-v2/MobileCdrApi.js +0 -151
- package/dist/api-sdk-v2/MobileConfigurationApi.d.ts +0 -52
- package/dist/api-sdk-v2/MobileConfigurationApi.js +0 -167
- package/dist/api-sdk-v2/MobileCountryRateApi.d.ts +0 -45
- package/dist/api-sdk-v2/MobileCountryRateApi.js +0 -151
- package/dist/api-sdk-v2/MobileEdrApi.d.ts +0 -45
- package/dist/api-sdk-v2/MobileEdrApi.js +0 -151
- package/dist/api-sdk-v2/MobileSubscriberApi.d.ts +0 -50
- package/dist/api-sdk-v2/MobileSubscriberApi.js +0 -161
- package/dist/api-sdk-v2/MsPendingEventApi.d.ts +0 -48
- package/dist/api-sdk-v2/MsPendingEventApi.js +0 -155
- package/dist/api-sdk-v2/NetomniaFtth1StageInstallAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/NetomniaFtth1StageInstallAuditApi.js +0 -167
- package/dist/api-sdk-v2/NetomniaFtth2StageInstallAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/NetomniaFtth2StageInstallAuditApi.js +0 -167
- package/dist/api-sdk-v2/NetomniaFtthServiceVisitSheetApi.d.ts +0 -52
- package/dist/api-sdk-v2/NetomniaFtthServiceVisitSheetApi.js +0 -167
- package/dist/api-sdk-v2/NetomniaInstallVerificationApi.d.ts +0 -52
- package/dist/api-sdk-v2/NetomniaInstallVerificationApi.js +0 -167
- package/dist/api-sdk-v2/NetworkDeviceApi.d.ts +0 -50
- package/dist/api-sdk-v2/NetworkDeviceApi.js +0 -161
- package/dist/api-sdk-v2/Noinstall3AuditOfInstallationSheetApi.d.ts +0 -48
- package/dist/api-sdk-v2/Noinstall3AuditOfInstallationSheetApi.js +0 -155
- package/dist/api-sdk-v2/NoteApi.d.ts +0 -194
- package/dist/api-sdk-v2/NoteApi.js +0 -593
- package/dist/api-sdk-v2/NotificationTemplateApi.d.ts +0 -45
- package/dist/api-sdk-v2/NotificationTemplateApi.js +0 -151
- package/dist/api-sdk-v2/OfferApi.d.ts +0 -56
- package/dist/api-sdk-v2/OfferApi.js +0 -179
- package/dist/api-sdk-v2/OhAuditOfInstallationApi.d.ts +0 -52
- package/dist/api-sdk-v2/OhAuditOfInstallationApi.js +0 -167
- package/dist/api-sdk-v2/OhExternalAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/OhExternalAuditApi.js +0 -167
- package/dist/api-sdk-v2/OhInProgressAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/OhInProgressAuditApi.js +0 -167
- package/dist/api-sdk-v2/OhInstallationAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/OhInstallationAuditApi.js +0 -167
- package/dist/api-sdk-v2/OhRetroAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/OhRetroAuditApi.js +0 -167
- package/dist/api-sdk-v2/OltSnapshotApi.d.ts +0 -48
- package/dist/api-sdk-v2/OneTouchSwitchApi.d.ts +0 -66
- package/dist/api-sdk-v2/OneTouchSwitchApi.js +0 -209
- package/dist/api-sdk-v2/OntReplacementApprovalApi.d.ts +0 -50
- package/dist/api-sdk-v2/OntReplacementApprovalApi.js +0 -161
- package/dist/api-sdk-v2/OrderApi.d.ts +0 -122
- package/dist/api-sdk-v2/OrderApi.js +0 -377
- package/dist/api-sdk-v2/OrderCheckApi.d.ts +0 -48
- package/dist/api-sdk-v2/OrderCheckApi.js +0 -155
- package/dist/api-sdk-v2/OrderItemApi.d.ts +0 -78
- package/dist/api-sdk-v2/OrderItemApi.js +0 -245
- package/dist/api-sdk-v2/OrderKciApi.js +0 -155
- package/dist/api-sdk-v2/OrderRemediationTaskApi.d.ts +0 -54
- package/dist/api-sdk-v2/OrderRemediationTaskApi.js +0 -173
- package/dist/api-sdk-v2/OrganizationApi.d.ts +0 -54
- package/dist/api-sdk-v2/OrganizationApi.js +0 -173
- package/dist/api-sdk-v2/OutageApi.d.ts +0 -50
- package/dist/api-sdk-v2/OutageApi.js +0 -161
- package/dist/api-sdk-v2/OverlayRealA55Api.d.ts +0 -52
- package/dist/api-sdk-v2/OverlayRealA55Api.js +0 -167
- package/dist/api-sdk-v2/PICRequestApi.d.ts +0 -50
- package/dist/api-sdk-v2/PICRequestApi.js +0 -161
- package/dist/api-sdk-v2/PaymentApi.d.ts +0 -52
- package/dist/api-sdk-v2/PaymentApi.js +0 -167
- package/dist/api-sdk-v2/PaymentMethodApi.d.ts +0 -60
- package/dist/api-sdk-v2/PaymentMethodApi.js +0 -191
- package/dist/api-sdk-v2/PaymentMethodRefundApi.d.ts +0 -64
- package/dist/api-sdk-v2/PaymentMethodRefundApi.js +0 -203
- package/dist/api-sdk-v2/PermissionToFailApi.d.ts +0 -52
- package/dist/api-sdk-v2/PermissionToFailApi.js +0 -167
- package/dist/api-sdk-v2/PgAccountValidationApi.d.ts +0 -45
- package/dist/api-sdk-v2/PgAccountValidationApi.js +0 -151
- package/dist/api-sdk-v2/PgContactApi.d.ts +0 -50
- package/dist/api-sdk-v2/PgContactApi.js +0 -161
- package/dist/api-sdk-v2/PgDirectDebitFileApi.d.ts +0 -50
- package/dist/api-sdk-v2/PgDirectDebitFileApi.js +0 -161
- package/dist/api-sdk-v2/PgDisputeApi.d.ts +0 -50
- package/dist/api-sdk-v2/PgDisputeApi.js +0 -161
- package/dist/api-sdk-v2/PgFileAllocationApi.d.ts +0 -52
- package/dist/api-sdk-v2/PgFileAllocationApi.js +0 -167
- package/dist/api-sdk-v2/PgLogApi.d.ts +0 -45
- package/dist/api-sdk-v2/PgLogApi.js +0 -151
- package/dist/api-sdk-v2/PgPaymentMethodApi.d.ts +0 -54
- package/dist/api-sdk-v2/PgPaymentMethodApi.js +0 -173
- package/dist/api-sdk-v2/PgSortCodeSubstitutionApi.d.ts +0 -45
- package/dist/api-sdk-v2/PgSortCodeSubstitutionApi.js +0 -151
- package/dist/api-sdk-v2/PgTransactionApi.d.ts +0 -54
- package/dist/api-sdk-v2/PgTransactionApi.js +0 -173
- package/dist/api-sdk-v2/PgVocalinkApi.d.ts +0 -45
- package/dist/api-sdk-v2/PgVocalinkApi.js +0 -151
- package/dist/api-sdk-v2/PgWebhookApi.d.ts +0 -56
- package/dist/api-sdk-v2/PgWebhookApi.js +0 -179
- package/dist/api-sdk-v2/PgWebhookAttemptApi.d.ts +0 -48
- package/dist/api-sdk-v2/PgWebhookAttemptApi.js +0 -155
- package/dist/api-sdk-v2/PhoneNumberApi.d.ts +0 -50
- package/dist/api-sdk-v2/PhoneNumberApi.js +0 -161
- package/dist/api-sdk-v2/Premise2Api.d.ts +0 -45
- package/dist/api-sdk-v2/Premise2Api.js +0 -151
- package/dist/api-sdk-v2/PremiseApi.d.ts +0 -45
- package/dist/api-sdk-v2/PremiseApi.js +0 -151
- package/dist/api-sdk-v2/PriceBookApi.d.ts +0 -50
- package/dist/api-sdk-v2/PriceBookApi.js +0 -161
- package/dist/api-sdk-v2/ProductApi.d.ts +0 -68
- package/dist/api-sdk-v2/ProductApi.js +0 -215
- package/dist/api-sdk-v2/ProductComponentApi.d.ts +0 -52
- package/dist/api-sdk-v2/ProductComponentApi.js +0 -167
- package/dist/api-sdk-v2/ProgramApi.d.ts +0 -50
- package/dist/api-sdk-v2/ProgramApi.js +0 -161
- package/dist/api-sdk-v2/PushNotificationApi.d.ts +0 -60
- package/dist/api-sdk-v2/PushNotificationApi.js +0 -191
- package/dist/api-sdk-v2/QueueApi.d.ts +0 -52
- package/dist/api-sdk-v2/QueueApi.js +0 -167
- package/dist/api-sdk-v2/QueueChangeApi.d.ts +0 -50
- package/dist/api-sdk-v2/QueueChangeApi.js +0 -161
- package/dist/api-sdk-v2/ReferralApi.d.ts +0 -60
- package/dist/api-sdk-v2/ReferralApi.js +0 -191
- package/dist/api-sdk-v2/RegionApi.d.ts +0 -50
- package/dist/api-sdk-v2/RegionApi.js +0 -161
- package/dist/api-sdk-v2/RemediationOutcomeFormApi.d.ts +0 -52
- package/dist/api-sdk-v2/RemediationOutcomeFormApi.js +0 -167
- package/dist/api-sdk-v2/RemediationRequiredReasonApi.d.ts +0 -54
- package/dist/api-sdk-v2/RemediationRequiredReasonApi.js +0 -173
- package/dist/api-sdk-v2/RestrictionApi.d.ts +0 -52
- package/dist/api-sdk-v2/RestrictionApi.js +0 -167
- package/dist/api-sdk-v2/ReturnOrderApi.d.ts +0 -50
- package/dist/api-sdk-v2/ReturnOrderApi.js +0 -161
- package/dist/api-sdk-v2/ReturnsApi.d.ts +0 -50
- package/dist/api-sdk-v2/ReturnsApi.js +0 -161
- package/dist/api-sdk-v2/RewardApi.d.ts +0 -56
- package/dist/api-sdk-v2/RewardApi.js +0 -179
- package/dist/api-sdk-v2/SalesLeaderBoardApi.d.ts +0 -45
- package/dist/api-sdk-v2/SalesLeaderBoardApi.js +0 -151
- package/dist/api-sdk-v2/SalesTerritoryApi.d.ts +0 -52
- package/dist/api-sdk-v2/SalesTerritoryApi.js +0 -167
- package/dist/api-sdk-v2/ScheduleSlotApi.d.ts +0 -48
- package/dist/api-sdk-v2/ScheduleSlotApi.js +0 -155
- package/dist/api-sdk-v2/ServiceApi.d.ts +0 -50
- package/dist/api-sdk-v2/ServiceApi.js +0 -161
- package/dist/api-sdk-v2/ServiceAppointmentApi.d.ts +0 -54
- package/dist/api-sdk-v2/ServiceAppointmentApi.js +0 -173
- package/dist/api-sdk-v2/ServiceAppointmentConfigApi.d.ts +0 -64
- package/dist/api-sdk-v2/ServiceAppointmentConfigApi.js +0 -203
- package/dist/api-sdk-v2/ServiceVisitAuditApi.d.ts +0 -54
- package/dist/api-sdk-v2/ServiceVisitAuditApi.js +0 -173
- package/dist/api-sdk-v2/SiteSpecificRiskAssessmentOutcomeFormApi.d.ts +0 -52
- package/dist/api-sdk-v2/SiteSpecificRiskAssessmentOutcomeFormApi.js +0 -167
- package/dist/api-sdk-v2/SmsMessageApi.d.ts +0 -58
- package/dist/api-sdk-v2/SmsMessageApi.js +0 -185
- package/dist/api-sdk-v2/SmsTemplateApi.d.ts +0 -45
- package/dist/api-sdk-v2/SmsTemplateApi.js +0 -151
- package/dist/api-sdk-v2/SplitOrderApi.d.ts +0 -54
- package/dist/api-sdk-v2/SplitOrderApi.js +0 -173
- package/dist/api-sdk-v2/SubtaskApi.d.ts +0 -50
- package/dist/api-sdk-v2/SubtaskApi.js +0 -161
- package/dist/api-sdk-v2/SupportTaskApi.js +0 -155
- package/dist/api-sdk-v2/SweeperMaintenanceAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/SweeperMaintenanceAuditApi.js +0 -167
- package/dist/api-sdk-v2/TeamApi.d.ts +0 -56
- package/dist/api-sdk-v2/TeamApi.js +0 -179
- package/dist/api-sdk-v2/TelesalesDashboardApi.d.ts +0 -45
- package/dist/api-sdk-v2/TelesalesDashboardApi.js +0 -151
- package/dist/api-sdk-v2/TestEntityForVisualBuilderApi.d.ts +0 -52
- package/dist/api-sdk-v2/TestEntityForVisualBuilderApi.js +0 -167
- package/dist/api-sdk-v2/TimeSlotApi.d.ts +0 -48
- package/dist/api-sdk-v2/TransactionApi.d.ts +0 -62
- package/dist/api-sdk-v2/TransactionApi.js +0 -197
- package/dist/api-sdk-v2/TwilioUserUpdateApi.d.ts +0 -48
- package/dist/api-sdk-v2/TwilioUserUpdateApi.js +0 -155
- package/dist/api-sdk-v2/UgAuditOfInstallationApi.d.ts +0 -52
- package/dist/api-sdk-v2/UgAuditOfInstallationApi.js +0 -167
- package/dist/api-sdk-v2/UgExternalAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/UgExternalAuditApi.js +0 -167
- package/dist/api-sdk-v2/UgInProgressAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/UgInProgressAuditApi.js +0 -167
- package/dist/api-sdk-v2/UgInstallationAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/UgInstallationAuditApi.js +0 -167
- package/dist/api-sdk-v2/UgRetroAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/UgRetroAuditApi.js +0 -167
- package/dist/api-sdk-v2/UserApi.d.ts +0 -106
- package/dist/api-sdk-v2/UserApi.js +0 -329
- package/dist/api-sdk-v2/VendorApi.d.ts +0 -50
- package/dist/api-sdk-v2/VendorApi.js +0 -161
- package/dist/api-sdk-v2/VisitApi.d.ts +0 -58
- package/dist/api-sdk-v2/VisitApi.js +0 -185
- package/dist/api-sdk-v2/VoiceConfigurationApi.d.ts +0 -48
- package/dist/api-sdk-v2/VoiceConfigurationApi.js +0 -155
- package/dist/api-sdk-v2/WayleaveAuditApi.d.ts +0 -52
- package/dist/api-sdk-v2/WayleaveAuditApi.js +0 -167
- package/dist/api-sdk-v2/WorkOrderApi.d.ts +0 -180
- package/dist/api-sdk-v2/WorkOrderApi.js +0 -551
- package/dist/api-sdk-v2/WorkOrderRemediationViewApi.d.ts +0 -45
- package/dist/api-sdk-v2/WorkOrderRemediationViewApi.js +0 -151
- package/dist/api-sdk-v2/WorkOrderStatusUpdateApi.d.ts +0 -48
- package/dist/api-sdk-v2/WorkOrderStatusUpdateApi.js +0 -155
- package/dist/api-sdk-v2/YfEquipmentCollectionApi.d.ts +0 -48
- package/dist/api-sdk-v2/YfEquipmentCollectionApi.js +0 -155
- package/dist/api-sdk-v2/YfFieldServiceVisitApi.d.ts +0 -52
- package/dist/api-sdk-v2/YfFieldServiceVisitApi.js +0 -167
- package/dist/api-sdk-v2/YfStockAuditApi.d.ts +0 -54
- package/dist/api-sdk-v2/YfStockAuditApi.js +0 -173
- package/dist/api-sdk-v2/YfStockCountApi.d.ts +0 -52
- package/dist/api-sdk-v2/YfStockCountApi.js +0 -167
- package/dist/api-sdk-v2/YfToolAuditApi.d.ts +0 -56
- package/dist/api-sdk-v2/YfToolAuditApi.js +0 -179
- package/dist/api-sdk-v2/YfVanAuditApi.d.ts +0 -56
- package/dist/api-sdk-v2/YfVanAuditApi.js +0 -179
- package/dist/db-accessors-v2/AccountCreditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/AccountCreditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/AccountDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ActivityDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ActivityDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ActivityLogDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ActivityLogDbAccessor.js +0 -227
- package/dist/db-accessors-v2/AddressDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/AddressDbAccessor.js +0 -227
- package/dist/db-accessors-v2/AffiliateCodeDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/AffiliateCodeDbAccessor.js +0 -227
- package/dist/db-accessors-v2/AppointmentDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/AppointmentDbAccessor.js +0 -227
- package/dist/db-accessors-v2/BillingAdjustmentDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/BillingAdjustmentDbAccessor.js +0 -227
- package/dist/db-accessors-v2/BillingRequestDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/BillingRequestDbAccessor.js +0 -227
- package/dist/db-accessors-v2/BlockageA55DbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/BlockageA55DbAccessor.js +0 -227
- package/dist/db-accessors-v2/BrskEntityMigrationErrorDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/BrskEntityMigrationErrorDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CallDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CallDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CallEventDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CallEventDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CallLegDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CallLegDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CallTransferDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CallTransferDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CampaignDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CaseDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ChangeReasonDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ChangeReasonDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ChurnRequestDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ChurnRequestDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ContactDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ContactDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ContractBuyOutDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ContractBuyOutDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ConversationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ConversationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ConversationFeedbackDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ConversationFeedbackDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CreditNoteDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CreditNoteDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CrmDatasetDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CrmDatasetDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CustomerDeviceAtaDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CustomerDeviceAtaDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CustomerDeviceConfigurationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CustomerDeviceConfigurationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CustomerDeviceOntDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CustomerDeviceOntDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CustomerDeviceRouterDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CustomerDeviceRouterDbAccessor.js +0 -227
- package/dist/db-accessors-v2/CustomerPhonePortingDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/CustomerPhonePortingDbAccessor.js +0 -227
- package/dist/db-accessors-v2/DiscountDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/DiscountDbAccessor.js +0 -227
- package/dist/db-accessors-v2/EmailDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/EmailDbAccessor.js +0 -227
- package/dist/db-accessors-v2/EmailSenderDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/EmailSenderDbAccessor.js +0 -227
- package/dist/db-accessors-v2/EmailTemplateDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/EmailTemplateDbAccessor.js +0 -227
- package/dist/db-accessors-v2/FieldServiceDispatchedProductDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/FieldServiceDispatchedProductDbAccessor.js +0 -227
- package/dist/db-accessors-v2/FieldServiceProductDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/FieldServiceProductDbAccessor.js +0 -227
- package/dist/db-accessors-v2/FileDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ImpersonationTrackerDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ImpersonationTrackerDbAccessor.js +0 -227
- package/dist/db-accessors-v2/InternalInstallAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/InternalInstallAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/InvoiceDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/InvoiceDbAccessor.js +0 -227
- package/dist/db-accessors-v2/InvoiceItemDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/InvoiceItemDbAccessor.js +0 -227
- package/dist/db-accessors-v2/KnowledgeArticleDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/KnowledgeArticleDbAccessor.js +0 -227
- package/dist/db-accessors-v2/LeadDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/LeadDbAccessor.js +0 -227
- package/dist/db-accessors-v2/MessageDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/MessageDbAccessor.js +0 -227
- package/dist/db-accessors-v2/NetworkDeviceDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/NetworkDeviceDbAccessor.js +0 -227
- package/dist/db-accessors-v2/NoteDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OfferDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OfferDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OhAuditOfInstallationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OhAuditOfInstallationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OhExternalAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OhExternalAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OhInProgressAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OhInProgressAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OhInstallationAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OhInstallationAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OhRetroAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OhRetroAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OneTouchSwitchDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OneTouchSwitchDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OntReplacementApprovalDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OntReplacementApprovalDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OrderCheckDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OrderCheckDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OrderDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OrderDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OrderItemDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OrderItemDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OrderKciDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OrderKciDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OutageDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OutageDbAccessor.js +0 -227
- package/dist/db-accessors-v2/OverlayRealA55DbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/OverlayRealA55DbAccessor.js +0 -227
- package/dist/db-accessors-v2/PICRequestDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PICRequestDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PaymentDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PaymentMethodDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PaymentMethodDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PaymentMethodRefundDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PaymentMethodRefundDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PermissionToFailDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PermissionToFailDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgAccountValidationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgAccountValidationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgContactDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgContactDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgDirectDebitFileDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgDirectDebitFileDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgDisputeDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgDisputeDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgFileAllocationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgFileAllocationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgLogDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgLogDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgPaymentMethodDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgPaymentMethodDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgSortCodeSubstitutionDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgSortCodeSubstitutionDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgTransactionDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgTransactionDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgVocalinkDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgVocalinkDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgWebhookAttemptDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgWebhookAttemptDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PgWebhookDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PgWebhookDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PhoneNumberDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PhoneNumberDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PriceBookDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PriceBookDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ProductDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ProductDbAccessor.js +0 -227
- package/dist/db-accessors-v2/PushNotificationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/PushNotificationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ReferralDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ReferralDbAccessor.js +0 -227
- package/dist/db-accessors-v2/RemediationOutcomeFormDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/RemediationOutcomeFormDbAccessor.js +0 -227
- package/dist/db-accessors-v2/RemediationRequiredReasonDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/RemediationRequiredReasonDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ReturnsDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ReturnsDbAccessor.js +0 -227
- package/dist/db-accessors-v2/RewardDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/RewardDbAccessor.js +0 -227
- package/dist/db-accessors-v2/SalesTerritoryDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/SalesTerritoryDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ScheduleSlotDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ScheduleSlotDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ServiceAppointmentConfigDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ServiceAppointmentConfigDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ServiceAppointmentDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ServiceAppointmentDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ServiceDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ServiceDbAccessor.js +0 -227
- package/dist/db-accessors-v2/ServiceVisitAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/ServiceVisitAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/SiteSpecificRiskAssessmentOutcomeFormDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/SiteSpecificRiskAssessmentOutcomeFormDbAccessor.js +0 -227
- package/dist/db-accessors-v2/SmsMessageDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/SmsMessageDbAccessor.js +0 -227
- package/dist/db-accessors-v2/SweeperMaintenanceAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/SweeperMaintenanceAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/TeamDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/TestEntityForVisualBuilderDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/TestEntityForVisualBuilderDbAccessor.js +0 -227
- package/dist/db-accessors-v2/TimeSlotDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/TransactionDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/TransactionDbAccessor.js +0 -227
- package/dist/db-accessors-v2/TwilioUserUpdateDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/TwilioUserUpdateDbAccessor.js +0 -227
- package/dist/db-accessors-v2/UgAuditOfInstallationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/UgAuditOfInstallationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/UgExternalAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/UgExternalAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/UgInProgressAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/UgInProgressAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/UgInstallationAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/UgInstallationAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/UgRetroAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/UgRetroAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/UserDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/UserDbAccessor.js +0 -227
- package/dist/db-accessors-v2/VisitDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/VisitDbAccessor.js +0 -227
- package/dist/db-accessors-v2/VoiceConfigurationDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/VoiceConfigurationDbAccessor.js +0 -227
- package/dist/db-accessors-v2/WayleaveAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/WayleaveAuditDbAccessor.js +0 -227
- package/dist/db-accessors-v2/WorkOrderDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/WorkOrderDbAccessor.js +0 -227
- package/dist/db-accessors-v2/WorkOrderStatusUpdateDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/WorkOrderStatusUpdateDbAccessor.js +0 -227
- package/dist/db-accessors-v2/YfFieldServiceVisitDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/YfFieldServiceVisitDbAccessor.js +0 -227
- package/dist/db-accessors-v2/YfStockAuditDbAccessor.d.ts +0 -149
- package/dist/db-accessors-v2/YfStockAuditDbAccessor.js +0 -227
- package/dist/db-sdk-v2/AccountCreditDb.d.ts +0 -122
- package/dist/db-sdk-v2/AccountCreditDb.js +0 -210
- package/dist/db-sdk-v2/AccountDb.d.ts +0 -144
- package/dist/db-sdk-v2/AccountDb.js +0 -276
- package/dist/db-sdk-v2/AddressDb.d.ts +0 -156
- package/dist/db-sdk-v2/AddressDb.js +0 -312
- package/dist/db-sdk-v2/AffiliateCodeDb.d.ts +0 -126
- package/dist/db-sdk-v2/AffiliateCodeDb.js +0 -222
- package/dist/db-sdk-v2/AppointmentCalendarDb.d.ts +0 -117
- package/dist/db-sdk-v2/AppointmentCalendarDb.js +0 -200
- package/dist/db-sdk-v2/AppointmentDb.d.ts +0 -132
- package/dist/db-sdk-v2/AppointmentDb.js +0 -240
- package/dist/db-sdk-v2/BillingAdjustmentDb.d.ts +0 -126
- package/dist/db-sdk-v2/BillingAdjustmentDb.js +0 -222
- package/dist/db-sdk-v2/BillingRequestDb.d.ts +0 -132
- package/dist/db-sdk-v2/BillingRequestDb.js +0 -240
- package/dist/db-sdk-v2/BlockageA55Db.d.ts +0 -126
- package/dist/db-sdk-v2/BlockageA55Db.js +0 -222
- package/dist/db-sdk-v2/BlockageReportA55Db.d.ts +0 -124
- package/dist/db-sdk-v2/BlockageReportA55Db.js +0 -216
- package/dist/db-sdk-v2/BrskEntityMigrationErrorDb.d.ts +0 -117
- package/dist/db-sdk-v2/BrskEntityMigrationErrorDb.js +0 -200
- package/dist/db-sdk-v2/CalendarDb.d.ts +0 -117
- package/dist/db-sdk-v2/CalendarDb.js +0 -200
- package/dist/db-sdk-v2/CallDb.d.ts +0 -138
- package/dist/db-sdk-v2/CallDb.js +0 -258
- package/dist/db-sdk-v2/CallEventDb.d.ts +0 -124
- package/dist/db-sdk-v2/CallEventDb.js +0 -216
- package/dist/db-sdk-v2/CallLegDb.d.ts +0 -130
- package/dist/db-sdk-v2/CallLegDb.js +0 -234
- package/dist/db-sdk-v2/CallTransferDb.d.ts +0 -132
- package/dist/db-sdk-v2/CallTransferDb.js +0 -240
- package/dist/db-sdk-v2/CallUpdatesDb.d.ts +0 -117
- package/dist/db-sdk-v2/CallUpdatesDb.js +0 -200
- package/dist/db-sdk-v2/CampaignDb.d.ts +0 -124
- package/dist/db-sdk-v2/CampaignDb.js +0 -216
- package/dist/db-sdk-v2/CaseActionDb.d.ts +0 -120
- package/dist/db-sdk-v2/CaseActionDb.js +0 -204
- package/dist/db-sdk-v2/CaseDb.d.ts +0 -170
- package/dist/db-sdk-v2/CaseDb.js +0 -354
- package/dist/db-sdk-v2/CaseQueueListViewDb.d.ts +0 -117
- package/dist/db-sdk-v2/CaseQueueListViewDb.js +0 -200
- package/dist/db-sdk-v2/ChangeReasonDb.d.ts +0 -128
- package/dist/db-sdk-v2/ChangeReasonDb.js +0 -228
- package/dist/db-sdk-v2/ChurnRequestDb.d.ts +0 -122
- package/dist/db-sdk-v2/ChurnRequestDb.js +0 -210
- package/dist/db-sdk-v2/CommissionDb.d.ts +0 -126
- package/dist/db-sdk-v2/CommissionDb.js +0 -222
- package/dist/db-sdk-v2/ConsumptionRateDb.d.ts +0 -122
- package/dist/db-sdk-v2/ConsumptionRateDb.js +0 -210
- package/dist/db-sdk-v2/ConsumptionScheduleDb.d.ts +0 -124
- package/dist/db-sdk-v2/ConsumptionScheduleDb.js +0 -216
- package/dist/db-sdk-v2/ContactDb.d.ts +0 -190
- package/dist/db-sdk-v2/ContactDb.js +0 -414
- package/dist/db-sdk-v2/ContactIdentityDb.d.ts +0 -126
- package/dist/db-sdk-v2/ContactIdentityDb.js +0 -222
- package/dist/db-sdk-v2/ContractBuyOutDb.d.ts +0 -132
- package/dist/db-sdk-v2/ContractBuyOutDb.js +0 -240
- package/dist/db-sdk-v2/ConversationDb.d.ts +0 -126
- package/dist/db-sdk-v2/ConversationDb.js +0 -222
- package/dist/db-sdk-v2/ConversationFeedbackDb.d.ts +0 -126
- package/dist/db-sdk-v2/ConversationFeedbackDb.js +0 -222
- package/dist/db-sdk-v2/CreditNoteDb.d.ts +0 -126
- package/dist/db-sdk-v2/CreditNoteDb.js +0 -222
- package/dist/db-sdk-v2/CrmDatasetDb.d.ts +0 -132
- package/dist/db-sdk-v2/CrmDatasetDb.js +0 -240
- package/dist/db-sdk-v2/CustomerDeviceAtaDb.d.ts +0 -120
- package/dist/db-sdk-v2/CustomerDeviceAtaDb.js +0 -204
- package/dist/db-sdk-v2/CustomerDeviceConfigurationDb.d.ts +0 -122
- package/dist/db-sdk-v2/CustomerDeviceConfigurationDb.js +0 -210
- package/dist/db-sdk-v2/CustomerDeviceOntDb.d.ts +0 -138
- package/dist/db-sdk-v2/CustomerDeviceOntDb.js +0 -258
- package/dist/db-sdk-v2/CustomerDeviceOntRemovalDb.d.ts +0 -122
- package/dist/db-sdk-v2/CustomerDeviceOntRemovalDb.js +0 -210
- package/dist/db-sdk-v2/CustomerDeviceRouterDb.d.ts +0 -132
- package/dist/db-sdk-v2/CustomerDeviceRouterDb.js +0 -240
- package/dist/db-sdk-v2/CustomerPhonePortingDb.d.ts +0 -120
- package/dist/db-sdk-v2/CustomerPhonePortingDb.js +0 -204
- package/dist/db-sdk-v2/DeactivationApprovalDb.d.ts +0 -124
- package/dist/db-sdk-v2/DeactivationApprovalDb.js +0 -216
- package/dist/db-sdk-v2/DiscountDb.d.ts +0 -130
- package/dist/db-sdk-v2/DiscountDb.js +0 -234
- package/dist/db-sdk-v2/EmailDb.d.ts +0 -134
- package/dist/db-sdk-v2/EmailDb.js +0 -246
- package/dist/db-sdk-v2/EmailSenderDb.d.ts +0 -120
- package/dist/db-sdk-v2/EmailSenderDb.js +0 -204
- package/dist/db-sdk-v2/EmailTemplateDb.d.ts +0 -117
- package/dist/db-sdk-v2/EmailTemplateDb.js +0 -200
- package/dist/db-sdk-v2/EngineerDb.d.ts +0 -117
- package/dist/db-sdk-v2/EngineerDb.js +0 -200
- package/dist/db-sdk-v2/ExchangeDb.d.ts +0 -124
- package/dist/db-sdk-v2/ExchangeDb.js +0 -216
- package/dist/db-sdk-v2/FieldServiceDispatchedProductDb.d.ts +0 -126
- package/dist/db-sdk-v2/FieldServiceDispatchedProductDb.js +0 -222
- package/dist/db-sdk-v2/FieldServiceProductDb.d.ts +0 -130
- package/dist/db-sdk-v2/FieldServiceProductDb.js +0 -234
- package/dist/db-sdk-v2/FileDb.d.ts +0 -246
- package/dist/db-sdk-v2/FileDb.js +0 -582
- package/dist/db-sdk-v2/FingerprintDb.d.ts +0 -126
- package/dist/db-sdk-v2/FingerprintDb.js +0 -222
- package/dist/db-sdk-v2/ImpersonationTrackerDb.d.ts +0 -122
- package/dist/db-sdk-v2/ImpersonationTrackerDb.js +0 -210
- package/dist/db-sdk-v2/InternalInstallAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/InternalInstallAuditDb.js +0 -216
- package/dist/db-sdk-v2/InvoiceDb.d.ts +0 -154
- package/dist/db-sdk-v2/InvoiceDb.js +0 -306
- package/dist/db-sdk-v2/InvoiceItemDb.d.ts +0 -122
- package/dist/db-sdk-v2/InvoiceItemDb.js +0 -210
- package/dist/db-sdk-v2/KnowledgeArticleDb.d.ts +0 -124
- package/dist/db-sdk-v2/KnowledgeArticleDb.js +0 -216
- package/dist/db-sdk-v2/LeadDb.d.ts +0 -150
- package/dist/db-sdk-v2/LeadDb.js +0 -294
- package/dist/db-sdk-v2/LinearIssueDb.d.ts +0 -117
- package/dist/db-sdk-v2/LinearIssueDb.js +0 -200
- package/dist/db-sdk-v2/McPendingEventDb.d.ts +0 -120
- package/dist/db-sdk-v2/McPendingEventDb.js +0 -204
- package/dist/db-sdk-v2/MessageDb.d.ts +0 -124
- package/dist/db-sdk-v2/MessageDb.js +0 -216
- package/dist/db-sdk-v2/MilestoneDb.d.ts +0 -126
- package/dist/db-sdk-v2/MilestoneDb.js +0 -222
- package/dist/db-sdk-v2/MobileCdrDb.d.ts +0 -117
- package/dist/db-sdk-v2/MobileCdrDb.js +0 -200
- package/dist/db-sdk-v2/MobileConfigurationDb.d.ts +0 -124
- package/dist/db-sdk-v2/MobileConfigurationDb.js +0 -216
- package/dist/db-sdk-v2/MobileCountryRateDb.d.ts +0 -117
- package/dist/db-sdk-v2/MobileCountryRateDb.js +0 -200
- package/dist/db-sdk-v2/MobileEdrDb.d.ts +0 -117
- package/dist/db-sdk-v2/MobileEdrDb.js +0 -200
- package/dist/db-sdk-v2/MobileSubscriberDb.d.ts +0 -122
- package/dist/db-sdk-v2/MobileSubscriberDb.js +0 -210
- package/dist/db-sdk-v2/MsPendingEventDb.d.ts +0 -120
- package/dist/db-sdk-v2/MsPendingEventDb.js +0 -204
- package/dist/db-sdk-v2/NetomniaFtth1StageInstallAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/NetomniaFtth1StageInstallAuditDb.js +0 -216
- package/dist/db-sdk-v2/NetomniaFtth2StageInstallAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/NetomniaFtth2StageInstallAuditDb.js +0 -216
- package/dist/db-sdk-v2/NetomniaFtthServiceVisitSheetDb.d.ts +0 -124
- package/dist/db-sdk-v2/NetomniaFtthServiceVisitSheetDb.js +0 -216
- package/dist/db-sdk-v2/NetomniaInstallVerificationDb.d.ts +0 -124
- package/dist/db-sdk-v2/NetomniaInstallVerificationDb.js +0 -216
- package/dist/db-sdk-v2/NetworkDeviceDb.d.ts +0 -122
- package/dist/db-sdk-v2/NetworkDeviceDb.js +0 -210
- package/dist/db-sdk-v2/Noinstall3AuditOfInstallationSheetDb.d.ts +0 -120
- package/dist/db-sdk-v2/Noinstall3AuditOfInstallationSheetDb.js +0 -204
- package/dist/db-sdk-v2/NoteDb.d.ts +0 -266
- package/dist/db-sdk-v2/NoteDb.js +0 -642
- package/dist/db-sdk-v2/NotificationTemplateDb.d.ts +0 -117
- package/dist/db-sdk-v2/NotificationTemplateDb.js +0 -200
- package/dist/db-sdk-v2/OfferDb.d.ts +0 -128
- package/dist/db-sdk-v2/OfferDb.js +0 -228
- package/dist/db-sdk-v2/OhAuditOfInstallationDb.d.ts +0 -124
- package/dist/db-sdk-v2/OhAuditOfInstallationDb.js +0 -216
- package/dist/db-sdk-v2/OhExternalAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/OhExternalAuditDb.js +0 -216
- package/dist/db-sdk-v2/OhInProgressAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/OhInProgressAuditDb.js +0 -216
- package/dist/db-sdk-v2/OhInstallationAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/OhInstallationAuditDb.js +0 -216
- package/dist/db-sdk-v2/OhRetroAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/OhRetroAuditDb.js +0 -216
- package/dist/db-sdk-v2/OltSnapshotDb.d.ts +0 -120
- package/dist/db-sdk-v2/OltSnapshotDb.js +0 -204
- package/dist/db-sdk-v2/OneTouchSwitchDb.d.ts +0 -138
- package/dist/db-sdk-v2/OneTouchSwitchDb.js +0 -258
- package/dist/db-sdk-v2/OntReplacementApprovalDb.d.ts +0 -122
- package/dist/db-sdk-v2/OntReplacementApprovalDb.js +0 -210
- package/dist/db-sdk-v2/OrderCheckDb.d.ts +0 -120
- package/dist/db-sdk-v2/OrderCheckDb.js +0 -204
- package/dist/db-sdk-v2/OrderDb.d.ts +0 -194
- package/dist/db-sdk-v2/OrderDb.js +0 -426
- package/dist/db-sdk-v2/OrderItemDb.d.ts +0 -150
- package/dist/db-sdk-v2/OrderItemDb.js +0 -294
- package/dist/db-sdk-v2/OrderRemediationTaskDb.d.ts +0 -126
- package/dist/db-sdk-v2/OrderRemediationTaskDb.js +0 -222
- package/dist/db-sdk-v2/OrganizationDb.d.ts +0 -126
- package/dist/db-sdk-v2/OrganizationDb.js +0 -222
- package/dist/db-sdk-v2/OutageDb.d.ts +0 -122
- package/dist/db-sdk-v2/OutageDb.js +0 -210
- package/dist/db-sdk-v2/OverlayRealA55Db.d.ts +0 -124
- package/dist/db-sdk-v2/OverlayRealA55Db.js +0 -216
- package/dist/db-sdk-v2/PICRequestDb.d.ts +0 -122
- package/dist/db-sdk-v2/PICRequestDb.js +0 -210
- package/dist/db-sdk-v2/PaymentDb.d.ts +0 -124
- package/dist/db-sdk-v2/PaymentDb.js +0 -216
- package/dist/db-sdk-v2/PaymentMethodDb.d.ts +0 -132
- package/dist/db-sdk-v2/PaymentMethodDb.js +0 -240
- package/dist/db-sdk-v2/PaymentMethodRefundDb.d.ts +0 -136
- package/dist/db-sdk-v2/PaymentMethodRefundDb.js +0 -252
- package/dist/db-sdk-v2/PermissionToFailDb.d.ts +0 -124
- package/dist/db-sdk-v2/PermissionToFailDb.js +0 -216
- package/dist/db-sdk-v2/PgAccountValidationDb.d.ts +0 -117
- package/dist/db-sdk-v2/PgAccountValidationDb.js +0 -200
- package/dist/db-sdk-v2/PgContactDb.d.ts +0 -122
- package/dist/db-sdk-v2/PgContactDb.js +0 -210
- package/dist/db-sdk-v2/PgDirectDebitFileDb.d.ts +0 -122
- package/dist/db-sdk-v2/PgDirectDebitFileDb.js +0 -210
- package/dist/db-sdk-v2/PgDisputeDb.d.ts +0 -122
- package/dist/db-sdk-v2/PgDisputeDb.js +0 -210
- package/dist/db-sdk-v2/PgFileAllocationDb.d.ts +0 -124
- package/dist/db-sdk-v2/PgFileAllocationDb.js +0 -216
- package/dist/db-sdk-v2/PgLogDb.d.ts +0 -117
- package/dist/db-sdk-v2/PgLogDb.js +0 -200
- package/dist/db-sdk-v2/PgPaymentMethodDb.d.ts +0 -126
- package/dist/db-sdk-v2/PgPaymentMethodDb.js +0 -222
- package/dist/db-sdk-v2/PgSortCodeSubstitutionDb.d.ts +0 -117
- package/dist/db-sdk-v2/PgSortCodeSubstitutionDb.js +0 -200
- package/dist/db-sdk-v2/PgTransactionDb.d.ts +0 -126
- package/dist/db-sdk-v2/PgTransactionDb.js +0 -222
- package/dist/db-sdk-v2/PgVocalinkDb.d.ts +0 -117
- package/dist/db-sdk-v2/PgVocalinkDb.js +0 -200
- package/dist/db-sdk-v2/PgWebhookAttemptDb.d.ts +0 -120
- package/dist/db-sdk-v2/PgWebhookAttemptDb.js +0 -204
- package/dist/db-sdk-v2/PgWebhookDb.d.ts +0 -128
- package/dist/db-sdk-v2/PgWebhookDb.js +0 -228
- package/dist/db-sdk-v2/PhoneNumberDb.d.ts +0 -122
- package/dist/db-sdk-v2/PhoneNumberDb.js +0 -210
- package/dist/db-sdk-v2/Premise2Db.d.ts +0 -117
- package/dist/db-sdk-v2/Premise2Db.js +0 -200
- package/dist/db-sdk-v2/PremiseDb.d.ts +0 -117
- package/dist/db-sdk-v2/PremiseDb.js +0 -200
- package/dist/db-sdk-v2/PriceBookDb.d.ts +0 -122
- package/dist/db-sdk-v2/PriceBookDb.js +0 -210
- package/dist/db-sdk-v2/ProductComponentDb.d.ts +0 -124
- package/dist/db-sdk-v2/ProductComponentDb.js +0 -216
- package/dist/db-sdk-v2/ProductDb.d.ts +0 -140
- package/dist/db-sdk-v2/ProductDb.js +0 -264
- package/dist/db-sdk-v2/ProgramDb.d.ts +0 -122
- package/dist/db-sdk-v2/ProgramDb.js +0 -210
- package/dist/db-sdk-v2/PushNotificationDb.d.ts +0 -132
- package/dist/db-sdk-v2/PushNotificationDb.js +0 -240
- package/dist/db-sdk-v2/QueueChangeDb.d.ts +0 -122
- package/dist/db-sdk-v2/QueueChangeDb.js +0 -210
- package/dist/db-sdk-v2/QueueDb.d.ts +0 -124
- package/dist/db-sdk-v2/QueueDb.js +0 -216
- package/dist/db-sdk-v2/ReferralDb.d.ts +0 -132
- package/dist/db-sdk-v2/ReferralDb.js +0 -240
- package/dist/db-sdk-v2/RegionDb.d.ts +0 -122
- package/dist/db-sdk-v2/RegionDb.js +0 -210
- package/dist/db-sdk-v2/RemediationOutcomeFormDb.d.ts +0 -124
- package/dist/db-sdk-v2/RemediationOutcomeFormDb.js +0 -216
- package/dist/db-sdk-v2/RemediationRequiredReasonDb.d.ts +0 -126
- package/dist/db-sdk-v2/RemediationRequiredReasonDb.js +0 -222
- package/dist/db-sdk-v2/RestrictionDb.d.ts +0 -124
- package/dist/db-sdk-v2/RestrictionDb.js +0 -216
- package/dist/db-sdk-v2/ReturnOrderDb.d.ts +0 -122
- package/dist/db-sdk-v2/ReturnOrderDb.js +0 -210
- package/dist/db-sdk-v2/ReturnsDb.d.ts +0 -122
- package/dist/db-sdk-v2/ReturnsDb.js +0 -210
- package/dist/db-sdk-v2/RewardDb.d.ts +0 -128
- package/dist/db-sdk-v2/RewardDb.js +0 -228
- package/dist/db-sdk-v2/SalesLeaderBoardDb.d.ts +0 -117
- package/dist/db-sdk-v2/SalesLeaderBoardDb.js +0 -200
- package/dist/db-sdk-v2/SalesTerritoryDb.d.ts +0 -124
- package/dist/db-sdk-v2/SalesTerritoryDb.js +0 -216
- package/dist/db-sdk-v2/ScheduleSlotDb.d.ts +0 -120
- package/dist/db-sdk-v2/ScheduleSlotDb.js +0 -204
- package/dist/db-sdk-v2/ServiceAppointmentConfigDb.d.ts +0 -136
- package/dist/db-sdk-v2/ServiceAppointmentConfigDb.js +0 -252
- package/dist/db-sdk-v2/ServiceAppointmentDb.d.ts +0 -126
- package/dist/db-sdk-v2/ServiceAppointmentDb.js +0 -222
- package/dist/db-sdk-v2/ServiceDb.d.ts +0 -122
- package/dist/db-sdk-v2/ServiceDb.js +0 -210
- package/dist/db-sdk-v2/ServiceVisitAuditDb.d.ts +0 -126
- package/dist/db-sdk-v2/ServiceVisitAuditDb.js +0 -222
- package/dist/db-sdk-v2/SiteSpecificRiskAssessmentOutcomeFormDb.d.ts +0 -124
- package/dist/db-sdk-v2/SiteSpecificRiskAssessmentOutcomeFormDb.js +0 -216
- package/dist/db-sdk-v2/SmsMessageDb.d.ts +0 -130
- package/dist/db-sdk-v2/SmsMessageDb.js +0 -234
- package/dist/db-sdk-v2/SmsTemplateDb.d.ts +0 -117
- package/dist/db-sdk-v2/SmsTemplateDb.js +0 -200
- package/dist/db-sdk-v2/SplitOrderDb.d.ts +0 -126
- package/dist/db-sdk-v2/SplitOrderDb.js +0 -222
- package/dist/db-sdk-v2/SubtaskDb.d.ts +0 -122
- package/dist/db-sdk-v2/SubtaskDb.js +0 -210
- package/dist/db-sdk-v2/SupportTaskDb.d.ts +0 -120
- package/dist/db-sdk-v2/SupportTaskDb.js +0 -204
- package/dist/db-sdk-v2/SweeperMaintenanceAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/SweeperMaintenanceAuditDb.js +0 -216
- package/dist/db-sdk-v2/TeamDb.js +0 -228
- package/dist/db-sdk-v2/TelesalesDashboardDb.d.ts +0 -117
- package/dist/db-sdk-v2/TelesalesDashboardDb.js +0 -200
- package/dist/db-sdk-v2/TestEntityForVisualBuilderDb.d.ts +0 -124
- package/dist/db-sdk-v2/TestEntityForVisualBuilderDb.js +0 -216
- package/dist/db-sdk-v2/TimeSlotDb.d.ts +0 -120
- package/dist/db-sdk-v2/TransactionDb.d.ts +0 -134
- package/dist/db-sdk-v2/TransactionDb.js +0 -246
- package/dist/db-sdk-v2/TwilioUserUpdateDb.d.ts +0 -120
- package/dist/db-sdk-v2/TwilioUserUpdateDb.js +0 -204
- package/dist/db-sdk-v2/UgAuditOfInstallationDb.d.ts +0 -124
- package/dist/db-sdk-v2/UgAuditOfInstallationDb.js +0 -216
- package/dist/db-sdk-v2/UgExternalAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/UgExternalAuditDb.js +0 -216
- package/dist/db-sdk-v2/UgInProgressAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/UgInProgressAuditDb.js +0 -216
- package/dist/db-sdk-v2/UgInstallationAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/UgInstallationAuditDb.js +0 -216
- package/dist/db-sdk-v2/UgRetroAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/UgRetroAuditDb.js +0 -216
- package/dist/db-sdk-v2/UserDb.d.ts +0 -178
- package/dist/db-sdk-v2/UserDb.js +0 -378
- package/dist/db-sdk-v2/VendorDb.d.ts +0 -122
- package/dist/db-sdk-v2/VendorDb.js +0 -210
- package/dist/db-sdk-v2/VisitDb.d.ts +0 -130
- package/dist/db-sdk-v2/VisitDb.js +0 -234
- package/dist/db-sdk-v2/VoiceConfigurationDb.d.ts +0 -120
- package/dist/db-sdk-v2/VoiceConfigurationDb.js +0 -204
- package/dist/db-sdk-v2/WayleaveAuditDb.d.ts +0 -124
- package/dist/db-sdk-v2/WayleaveAuditDb.js +0 -216
- package/dist/db-sdk-v2/WorkOrderDb.d.ts +0 -252
- package/dist/db-sdk-v2/WorkOrderDb.js +0 -600
- package/dist/db-sdk-v2/WorkOrderRemediationViewDb.d.ts +0 -117
- package/dist/db-sdk-v2/WorkOrderRemediationViewDb.js +0 -200
- package/dist/db-sdk-v2/WorkOrderStatusUpdateDb.d.ts +0 -120
- package/dist/db-sdk-v2/WorkOrderStatusUpdateDb.js +0 -204
- package/dist/db-sdk-v2/YfEquipmentCollectionDb.d.ts +0 -120
- package/dist/db-sdk-v2/YfEquipmentCollectionDb.js +0 -204
- package/dist/db-sdk-v2/YfFieldServiceVisitDb.d.ts +0 -124
- package/dist/db-sdk-v2/YfFieldServiceVisitDb.js +0 -216
- package/dist/db-sdk-v2/YfStockAuditDb.d.ts +0 -126
- package/dist/db-sdk-v2/YfStockAuditDb.js +0 -222
- package/dist/db-sdk-v2/YfStockCountDb.d.ts +0 -124
- package/dist/db-sdk-v2/YfStockCountDb.js +0 -216
- package/dist/db-sdk-v2/YfToolAuditDb.d.ts +0 -128
- package/dist/db-sdk-v2/YfToolAuditDb.js +0 -228
- package/dist/db-sdk-v2/YfVanAuditDb.d.ts +0 -128
- package/dist/db-sdk-v2/YfVanAuditDb.js +0 -228
- package/dist/entities-v2/Account.d.ts +0 -886
- package/dist/entities-v2/Account.js +0 -395
- package/dist/entities-v2/AccountCredit.d.ts +0 -215
- package/dist/entities-v2/AccountCredit.js +0 -178
- package/dist/entities-v2/Address.d.ts +0 -680
- package/dist/entities-v2/Address.js +0 -250
- package/dist/entities-v2/AffiliateCode.d.ts +0 -107
- package/dist/entities-v2/AffiliateCode.js +0 -77
- package/dist/entities-v2/Appointment.d.ts +0 -210
- package/dist/entities-v2/Appointment.js +0 -112
- package/dist/entities-v2/AppointmentCalendar.d.ts +0 -66
- package/dist/entities-v2/AppointmentCalendar.js +0 -64
- package/dist/entities-v2/BillingAdjustment.d.ts +0 -249
- package/dist/entities-v2/BillingAdjustment.js +0 -164
- package/dist/entities-v2/BillingRequest.d.ts +0 -563
- package/dist/entities-v2/BillingRequest.js +0 -209
- package/dist/entities-v2/BlockageA55.d.ts +0 -846
- package/dist/entities-v2/BlockageA55.js +0 -373
- package/dist/entities-v2/BlockageReportA55.d.ts +0 -306
- package/dist/entities-v2/BlockageReportA55.js +0 -165
- package/dist/entities-v2/BrskEntityMigrationError.d.ts +0 -107
- package/dist/entities-v2/BrskEntityMigrationError.js +0 -75
- package/dist/entities-v2/Calendar.d.ts +0 -65
- package/dist/entities-v2/Calendar.js +0 -63
- package/dist/entities-v2/Call.d.ts +0 -580
- package/dist/entities-v2/Call.js +0 -271
- package/dist/entities-v2/CallEvent.d.ts +0 -163
- package/dist/entities-v2/CallEvent.js +0 -107
- package/dist/entities-v2/CallLeg.d.ts +0 -404
- package/dist/entities-v2/CallLeg.js +0 -203
- package/dist/entities-v2/CallTransfer.d.ts +0 -284
- package/dist/entities-v2/CallTransfer.js +0 -159
- package/dist/entities-v2/CallUpdates.d.ts +0 -65
- package/dist/entities-v2/CallUpdates.js +0 -63
- package/dist/entities-v2/Campaign.d.ts +0 -117
- package/dist/entities-v2/Campaign.js +0 -79
- package/dist/entities-v2/Case.d.ts +0 -1997
- package/dist/entities-v2/Case.js +0 -1006
- package/dist/entities-v2/CaseAction.d.ts +0 -68
- package/dist/entities-v2/CaseAction.js +0 -63
- package/dist/entities-v2/CaseQueueListView.d.ts +0 -66
- package/dist/entities-v2/CaseQueueListView.js +0 -64
- package/dist/entities-v2/ChangeReason.d.ts +0 -1051
- package/dist/entities-v2/ChangeReason.js +0 -444
- package/dist/entities-v2/ChurnRequest.d.ts +0 -200
- package/dist/entities-v2/ChurnRequest.js +0 -161
- package/dist/entities-v2/Commission.d.ts +0 -176
- package/dist/entities-v2/Commission.js +0 -124
- package/dist/entities-v2/ConsumptionRate.d.ts +0 -160
- package/dist/entities-v2/ConsumptionRate.js +0 -111
- package/dist/entities-v2/ConsumptionSchedule.d.ts +0 -161
- package/dist/entities-v2/ConsumptionSchedule.js +0 -125
- package/dist/entities-v2/Contact.d.ts +0 -870
- package/dist/entities-v2/Contact.js +0 -456
- package/dist/entities-v2/ContactIdentity.d.ts +0 -109
- package/dist/entities-v2/ContactIdentity.js +0 -77
- package/dist/entities-v2/ContractBuyOut.d.ts +0 -320
- package/dist/entities-v2/ContractBuyOut.js +0 -213
- package/dist/entities-v2/Conversation.d.ts +0 -228
- package/dist/entities-v2/Conversation.js +0 -169
- package/dist/entities-v2/ConversationFeedback.d.ts +0 -150
- package/dist/entities-v2/ConversationFeedback.js +0 -96
- package/dist/entities-v2/CreditNote.d.ts +0 -181
- package/dist/entities-v2/CreditNote.js +0 -134
- package/dist/entities-v2/CrmDataset.d.ts +0 -495
- package/dist/entities-v2/CrmDataset.js +0 -165
- package/dist/entities-v2/CustomerDeviceAta.d.ts +0 -96
- package/dist/entities-v2/CustomerDeviceAta.js +0 -81
- package/dist/entities-v2/CustomerDeviceConfiguration.d.ts +0 -110
- package/dist/entities-v2/CustomerDeviceConfiguration.js +0 -77
- package/dist/entities-v2/CustomerDeviceOnt.d.ts +0 -370
- package/dist/entities-v2/CustomerDeviceOnt.js +0 -203
- package/dist/entities-v2/CustomerDeviceOntRemoval.d.ts +0 -122
- package/dist/entities-v2/CustomerDeviceOntRemoval.js +0 -104
- package/dist/entities-v2/CustomerDeviceRouter.d.ts +0 -277
- package/dist/entities-v2/CustomerDeviceRouter.js +0 -141
- package/dist/entities-v2/CustomerPhonePorting.d.ts +0 -123
- package/dist/entities-v2/CustomerPhonePorting.js +0 -79
- package/dist/entities-v2/DeactivationApproval.d.ts +0 -151
- package/dist/entities-v2/DeactivationApproval.js +0 -116
- package/dist/entities-v2/Discount.d.ts +0 -224
- package/dist/entities-v2/Discount.js +0 -136
- package/dist/entities-v2/Email.d.ts +0 -816
- package/dist/entities-v2/Email.js +0 -213
- package/dist/entities-v2/EmailSender.d.ts +0 -82
- package/dist/entities-v2/EmailSender.js +0 -67
- package/dist/entities-v2/EmailTemplate.d.ts +0 -86
- package/dist/entities-v2/EmailTemplate.js +0 -69
- package/dist/entities-v2/Engineer.d.ts +0 -72
- package/dist/entities-v2/Engineer.js +0 -65
- package/dist/entities-v2/Exchange.d.ts +0 -103
- package/dist/entities-v2/Exchange.js +0 -77
- package/dist/entities-v2/FieldServiceDispatchedProduct.d.ts +0 -150
- package/dist/entities-v2/FieldServiceDispatchedProduct.js +0 -92
- package/dist/entities-v2/FieldServiceProduct.d.ts +0 -298
- package/dist/entities-v2/FieldServiceProduct.js +0 -136
- package/dist/entities-v2/File.d.ts +0 -967
- package/dist/entities-v2/File.js +0 -192
- package/dist/entities-v2/Fingerprint.d.ts +0 -173
- package/dist/entities-v2/Fingerprint.js +0 -102
- package/dist/entities-v2/ImpersonationTracker.d.ts +0 -117
- package/dist/entities-v2/ImpersonationTracker.js +0 -89
- package/dist/entities-v2/InternalInstallAudit.d.ts +0 -901
- package/dist/entities-v2/InternalInstallAudit.js +0 -397
- package/dist/entities-v2/Invoice.d.ts +0 -1049
- package/dist/entities-v2/Invoice.js +0 -387
- package/dist/entities-v2/InvoiceItem.d.ts +0 -389
- package/dist/entities-v2/InvoiceItem.js +0 -202
- package/dist/entities-v2/KnowledgeArticle.d.ts +0 -360
- package/dist/entities-v2/KnowledgeArticle.js +0 -171
- package/dist/entities-v2/Lead.d.ts +0 -542
- package/dist/entities-v2/Lead.js +0 -286
- package/dist/entities-v2/LinearIssue.d.ts +0 -66
- package/dist/entities-v2/LinearIssue.js +0 -64
- package/dist/entities-v2/McPendingEvent.d.ts +0 -114
- package/dist/entities-v2/McPendingEvent.js +0 -88
- package/dist/entities-v2/Message.d.ts +0 -239
- package/dist/entities-v2/Message.js +0 -129
- package/dist/entities-v2/Milestone.d.ts +0 -220
- package/dist/entities-v2/Milestone.js +0 -141
- package/dist/entities-v2/MobileCdr.d.ts +0 -283
- package/dist/entities-v2/MobileCdr.js +0 -126
- package/dist/entities-v2/MobileConfiguration.d.ts +0 -261
- package/dist/entities-v2/MobileConfiguration.js +0 -178
- package/dist/entities-v2/MobileCountryRate.d.ts +0 -147
- package/dist/entities-v2/MobileCountryRate.js +0 -94
- package/dist/entities-v2/MobileEdr.d.ts +0 -100
- package/dist/entities-v2/MobileEdr.js +0 -73
- package/dist/entities-v2/MobileSubscriber.d.ts +0 -114
- package/dist/entities-v2/MobileSubscriber.js +0 -90
- package/dist/entities-v2/MsPendingEvent.d.ts +0 -133
- package/dist/entities-v2/MsPendingEvent.js +0 -108
- package/dist/entities-v2/NetomniaFtth1StageInstallAudit.d.ts +0 -1472
- package/dist/entities-v2/NetomniaFtth1StageInstallAudit.js +0 -753
- package/dist/entities-v2/NetomniaFtth2StageInstallAudit.d.ts +0 -938
- package/dist/entities-v2/NetomniaFtth2StageInstallAudit.js +0 -467
- package/dist/entities-v2/NetomniaFtthServiceVisitSheet.d.ts +0 -602
- package/dist/entities-v2/NetomniaFtthServiceVisitSheet.js +0 -293
- package/dist/entities-v2/NetomniaInstallVerification.d.ts +0 -723
- package/dist/entities-v2/NetomniaInstallVerification.js +0 -341
- package/dist/entities-v2/NetworkDevice.d.ts +0 -176
- package/dist/entities-v2/NetworkDevice.js +0 -109
- package/dist/entities-v2/Noinstall3AuditOfInstallationSheet.d.ts +0 -1282
- package/dist/entities-v2/Noinstall3AuditOfInstallationSheet.js +0 -746
- package/dist/entities-v2/Note.d.ts +0 -359
- package/dist/entities-v2/Note.js +0 -90
- package/dist/entities-v2/NotificationTemplate.d.ts +0 -101
- package/dist/entities-v2/NotificationTemplate.js +0 -74
- package/dist/entities-v2/Offer.d.ts +0 -394
- package/dist/entities-v2/Offer.js +0 -163
- package/dist/entities-v2/OhAuditOfInstallation.d.ts +0 -1462
- package/dist/entities-v2/OhAuditOfInstallation.js +0 -866
- package/dist/entities-v2/OhExternalAudit.d.ts +0 -300
- package/dist/entities-v2/OhExternalAudit.js +0 -176
- package/dist/entities-v2/OhInProgressAudit.d.ts +0 -785
- package/dist/entities-v2/OhInProgressAudit.js +0 -399
- package/dist/entities-v2/OhInstallationAudit.d.ts +0 -1174
- package/dist/entities-v2/OhInstallationAudit.js +0 -523
- package/dist/entities-v2/OhRetroAudit.d.ts +0 -618
- package/dist/entities-v2/OhRetroAudit.js +0 -335
- package/dist/entities-v2/OltSnapshot.d.ts +0 -82
- package/dist/entities-v2/OltSnapshot.js +0 -67
- package/dist/entities-v2/OneTouchSwitch.d.ts +0 -670
- package/dist/entities-v2/OneTouchSwitch.js +0 -171
- package/dist/entities-v2/OntReplacementApproval.d.ts +0 -109
- package/dist/entities-v2/OntReplacementApproval.js +0 -91
- package/dist/entities-v2/Order.d.ts +0 -1215
- package/dist/entities-v2/Order.js +0 -566
- package/dist/entities-v2/OrderCheck.d.ts +0 -216
- package/dist/entities-v2/OrderCheck.js +0 -106
- package/dist/entities-v2/OrderItem.d.ts +0 -574
- package/dist/entities-v2/OrderItem.js +0 -286
- package/dist/entities-v2/OrderKci.d.ts +0 -117
- package/dist/entities-v2/OrderKci.js +0 -77
- package/dist/entities-v2/OrderRemediationTask.d.ts +0 -148
- package/dist/entities-v2/OrderRemediationTask.js +0 -116
- package/dist/entities-v2/Organization.d.ts +0 -115
- package/dist/entities-v2/Organization.js +0 -79
- package/dist/entities-v2/Outage.d.ts +0 -135
- package/dist/entities-v2/Outage.js +0 -112
- package/dist/entities-v2/OverlayRealA55.d.ts +0 -581
- package/dist/entities-v2/OverlayRealA55.js +0 -303
- package/dist/entities-v2/PICRequest.d.ts +0 -209
- package/dist/entities-v2/PICRequest.js +0 -165
- package/dist/entities-v2/Payment.d.ts +0 -210
- package/dist/entities-v2/Payment.js +0 -166
- package/dist/entities-v2/PaymentMethod.d.ts +0 -292
- package/dist/entities-v2/PaymentMethod.js +0 -182
- package/dist/entities-v2/PaymentMethodRefund.d.ts +0 -232
- package/dist/entities-v2/PaymentMethodRefund.js +0 -153
- package/dist/entities-v2/PermissionToFail.d.ts +0 -134
- package/dist/entities-v2/PermissionToFail.js +0 -97
- package/dist/entities-v2/PgAccountValidation.d.ts +0 -193
- package/dist/entities-v2/PgAccountValidation.js +0 -101
- package/dist/entities-v2/PgContact.d.ts +0 -159
- package/dist/entities-v2/PgContact.js +0 -119
- package/dist/entities-v2/PgDirectDebitFile.d.ts +0 -613
- package/dist/entities-v2/PgDirectDebitFile.js +0 -302
- package/dist/entities-v2/PgDispute.d.ts +0 -105
- package/dist/entities-v2/PgDispute.js +0 -77
- package/dist/entities-v2/PgFileAllocation.d.ts +0 -242
- package/dist/entities-v2/PgFileAllocation.js +0 -97
- package/dist/entities-v2/PgLog.d.ts +0 -102
- package/dist/entities-v2/PgLog.js +0 -75
- package/dist/entities-v2/PgPaymentMethod.d.ts +0 -305
- package/dist/entities-v2/PgPaymentMethod.js +0 -216
- package/dist/entities-v2/PgSortCodeSubstitution.d.ts +0 -81
- package/dist/entities-v2/PgSortCodeSubstitution.js +0 -69
- package/dist/entities-v2/PgTransaction.d.ts +0 -470
- package/dist/entities-v2/PgTransaction.js +0 -271
- package/dist/entities-v2/PgVocalink.d.ts +0 -88
- package/dist/entities-v2/PgVocalink.js +0 -71
- package/dist/entities-v2/PgWebhook.d.ts +0 -153
- package/dist/entities-v2/PgWebhook.js +0 -102
- package/dist/entities-v2/PgWebhookAttempt.d.ts +0 -137
- package/dist/entities-v2/PgWebhookAttempt.js +0 -98
- package/dist/entities-v2/PhoneNumber.d.ts +0 -78
- package/dist/entities-v2/PhoneNumber.js +0 -65
- package/dist/entities-v2/Premise.d.ts +0 -145
- package/dist/entities-v2/Premise.js +0 -86
- package/dist/entities-v2/Premise2.d.ts +0 -66
- package/dist/entities-v2/Premise2.js +0 -64
- package/dist/entities-v2/PriceBook.d.ts +0 -151
- package/dist/entities-v2/PriceBook.js +0 -111
- package/dist/entities-v2/Product.d.ts +0 -3020
- package/dist/entities-v2/Product.js +0 -516
- package/dist/entities-v2/ProductComponent.d.ts +0 -267
- package/dist/entities-v2/ProductComponent.js +0 -176
- package/dist/entities-v2/Program.d.ts +0 -211
- package/dist/entities-v2/Program.js +0 -137
- package/dist/entities-v2/PushNotification.d.ts +0 -199
- package/dist/entities-v2/PushNotification.js +0 -106
- package/dist/entities-v2/Queue.d.ts +0 -91
- package/dist/entities-v2/Queue.js +0 -75
- package/dist/entities-v2/QueueChange.d.ts +0 -99
- package/dist/entities-v2/QueueChange.js +0 -73
- package/dist/entities-v2/Referral.d.ts +0 -200
- package/dist/entities-v2/Referral.js +0 -125
- package/dist/entities-v2/Region.d.ts +0 -75
- package/dist/entities-v2/Region.js +0 -67
- package/dist/entities-v2/RemediationOutcomeForm.d.ts +0 -591
- package/dist/entities-v2/RemediationOutcomeForm.js +0 -284
- package/dist/entities-v2/RemediationRequiredReason.d.ts +0 -945
- package/dist/entities-v2/RemediationRequiredReason.js +0 -613
- package/dist/entities-v2/Restriction.d.ts +0 -148
- package/dist/entities-v2/Restriction.js +0 -110
- package/dist/entities-v2/ReturnOrder.d.ts +0 -88
- package/dist/entities-v2/ReturnOrder.js +0 -75
- package/dist/entities-v2/Returns.d.ts +0 -862
- package/dist/entities-v2/Returns.js +0 -673
- package/dist/entities-v2/Reward.d.ts +0 -177
- package/dist/entities-v2/Reward.js +0 -105
- package/dist/entities-v2/SalesLeaderBoard.d.ts +0 -65
- package/dist/entities-v2/SalesLeaderBoard.js +0 -63
- package/dist/entities-v2/SalesTerritory.d.ts +0 -209
- package/dist/entities-v2/SalesTerritory.js +0 -88
- package/dist/entities-v2/ScheduleSlot.d.ts +0 -165
- package/dist/entities-v2/ScheduleSlot.js +0 -90
- package/dist/entities-v2/Service.d.ts +0 -213
- package/dist/entities-v2/Service.js +0 -159
- package/dist/entities-v2/ServiceAppointment.d.ts +0 -158
- package/dist/entities-v2/ServiceAppointment.js +0 -102
- package/dist/entities-v2/ServiceAppointmentConfig.d.ts +0 -2552
- package/dist/entities-v2/ServiceAppointmentConfig.js +0 -317
- package/dist/entities-v2/ServiceVisitAudit.d.ts +0 -866
- package/dist/entities-v2/ServiceVisitAudit.js +0 -355
- package/dist/entities-v2/SiteSpecificRiskAssessmentOutcomeForm.d.ts +0 -1049
- package/dist/entities-v2/SiteSpecificRiskAssessmentOutcomeForm.js +0 -515
- package/dist/entities-v2/SmsMessage.d.ts +0 -343
- package/dist/entities-v2/SmsMessage.js +0 -139
- package/dist/entities-v2/SmsTemplate.d.ts +0 -86
- package/dist/entities-v2/SmsTemplate.js +0 -69
- package/dist/entities-v2/SplitOrder.d.ts +0 -93
- package/dist/entities-v2/SplitOrder.js +0 -78
- package/dist/entities-v2/Subtask.d.ts +0 -180
- package/dist/entities-v2/Subtask.js +0 -127
- package/dist/entities-v2/SupportTask.d.ts +0 -68
- package/dist/entities-v2/SupportTask.js +0 -63
- package/dist/entities-v2/SweeperMaintenanceAudit.d.ts +0 -975
- package/dist/entities-v2/SweeperMaintenanceAudit.js +0 -477
- package/dist/entities-v2/Team.d.ts +0 -243
- package/dist/entities-v2/Team.js +0 -176
- package/dist/entities-v2/TelesalesDashboard.d.ts +0 -66
- package/dist/entities-v2/TelesalesDashboard.js +0 -64
- package/dist/entities-v2/TestEntityForVisualBuilder.d.ts +0 -358
- package/dist/entities-v2/TestEntityForVisualBuilder.js +0 -217
- package/dist/entities-v2/TimeSlot.d.ts +0 -186
- package/dist/entities-v2/TimeSlot.js +0 -109
- package/dist/entities-v2/Transaction.d.ts +0 -381
- package/dist/entities-v2/Transaction.js +0 -224
- package/dist/entities-v2/TwilioUserUpdate.d.ts +0 -103
- package/dist/entities-v2/TwilioUserUpdate.js +0 -73
- package/dist/entities-v2/UgAuditOfInstallation.d.ts +0 -1396
- package/dist/entities-v2/UgAuditOfInstallation.js +0 -832
- package/dist/entities-v2/UgExternalAudit.d.ts +0 -311
- package/dist/entities-v2/UgExternalAudit.js +0 -177
- package/dist/entities-v2/UgInProgressAudit.d.ts +0 -758
- package/dist/entities-v2/UgInProgressAudit.js +0 -383
- package/dist/entities-v2/UgInstallationAudit.d.ts +0 -1135
- package/dist/entities-v2/UgInstallationAudit.js +0 -505
- package/dist/entities-v2/UgRetroAudit.d.ts +0 -523
- package/dist/entities-v2/UgRetroAudit.js +0 -283
- package/dist/entities-v2/User.d.ts +0 -323
- package/dist/entities-v2/User.js +0 -142
- package/dist/entities-v2/Vendor.d.ts +0 -108
- package/dist/entities-v2/Vendor.js +0 -90
- package/dist/entities-v2/Visit.d.ts +0 -406
- package/dist/entities-v2/Visit.js +0 -274
- package/dist/entities-v2/VoiceConfiguration.d.ts +0 -372
- package/dist/entities-v2/VoiceConfiguration.js +0 -223
- package/dist/entities-v2/WayleaveAudit.d.ts +0 -653
- package/dist/entities-v2/WayleaveAudit.js +0 -285
- package/dist/entities-v2/WorkOrder.d.ts +0 -13405
- package/dist/entities-v2/WorkOrder.js +0 -1799
- package/dist/entities-v2/WorkOrderRemediationView.d.ts +0 -66
- package/dist/entities-v2/WorkOrderRemediationView.js +0 -64
- package/dist/entities-v2/WorkOrderStatusUpdate.d.ts +0 -347
- package/dist/entities-v2/WorkOrderStatusUpdate.js +0 -161
- package/dist/entities-v2/YfEquipmentCollection.d.ts +0 -384
- package/dist/entities-v2/YfEquipmentCollection.js +0 -131
- package/dist/entities-v2/YfFieldServiceVisit.d.ts +0 -1758
- package/dist/entities-v2/YfFieldServiceVisit.js +0 -753
- package/dist/entities-v2/YfStockAudit.d.ts +0 -214
- package/dist/entities-v2/YfStockAudit.js +0 -93
- package/dist/entities-v2/YfStockCount.d.ts +0 -378
- package/dist/entities-v2/YfStockCount.js +0 -139
- package/dist/entities-v2/YfToolAudit.d.ts +0 -2072
- package/dist/entities-v2/YfToolAudit.js +0 -1072
- package/dist/entities-v2/YfVanAudit.d.ts +0 -566
- package/dist/entities-v2/YfVanAudit.js +0 -261
- package/dist/records-v2/AccountCreditRecord.d.ts +0 -253
- package/dist/records-v2/AccountCreditRecord.js +0 -353
- package/dist/records-v2/AccountRecord.d.ts +0 -666
- package/dist/records-v2/AccountRecord.js +0 -924
- package/dist/records-v2/ActivityLogRecord.d.ts +0 -285
- package/dist/records-v2/ActivityLogRecord.js +0 -412
- package/dist/records-v2/ActivityRecord.d.ts +0 -444
- package/dist/records-v2/ActivityRecord.js +0 -641
- package/dist/records-v2/AddressRecord.d.ts +0 -635
- package/dist/records-v2/AddressRecord.js +0 -983
- package/dist/records-v2/AffiliateCodeRecord.d.ts +0 -265
- package/dist/records-v2/AffiliateCodeRecord.js +0 -379
- package/dist/records-v2/AppointmentRecord.d.ts +0 -305
- package/dist/records-v2/AppointmentRecord.js +0 -457
- package/dist/records-v2/BillingAdjustmentRecord.d.ts +0 -273
- package/dist/records-v2/BillingAdjustmentRecord.js +0 -398
- package/dist/records-v2/BillingRequestRecord.d.ts +0 -504
- package/dist/records-v2/BillingRequestRecord.js +0 -677
- package/dist/records-v2/BlockageA55Record.d.ts +0 -264
- package/dist/records-v2/BlockageA55Record.js +0 -379
- package/dist/records-v2/BrskEntityMigrationErrorRecord.d.ts +0 -184
- package/dist/records-v2/BrskEntityMigrationErrorRecord.js +0 -243
- package/dist/records-v2/CallEventRecord.d.ts +0 -245
- package/dist/records-v2/CallEventRecord.js +0 -346
- package/dist/records-v2/CallLegRecord.d.ts +0 -244
- package/dist/records-v2/CallLegRecord.js +0 -347
- package/dist/records-v2/CallRecord.d.ts +0 -363
- package/dist/records-v2/CallRecord.js +0 -537
- package/dist/records-v2/CallTransferRecord.d.ts +0 -265
- package/dist/records-v2/CallTransferRecord.js +0 -379
- package/dist/records-v2/CampaignRecord.d.ts +0 -273
- package/dist/records-v2/CampaignRecord.js +0 -386
- package/dist/records-v2/CaseRecord.d.ts +0 -1993
- package/dist/records-v2/CaseRecord.js +0 -2910
- package/dist/records-v2/ChangeReasonRecord.d.ts +0 -847
- package/dist/records-v2/ChangeReasonRecord.js +0 -1083
- package/dist/records-v2/ChurnRequestRecord.d.ts +0 -365
- package/dist/records-v2/ChurnRequestRecord.js +0 -515
- package/dist/records-v2/ContactRecord.d.ts +0 -930
- package/dist/records-v2/ContactRecord.js +0 -1441
- package/dist/records-v2/ContractBuyOutRecord.d.ts +0 -871
- package/dist/records-v2/ContractBuyOutRecord.js +0 -1208
- package/dist/records-v2/ConversationFeedbackRecord.d.ts +0 -265
- package/dist/records-v2/ConversationFeedbackRecord.js +0 -379
- package/dist/records-v2/ConversationRecord.d.ts +0 -373
- package/dist/records-v2/ConversationRecord.js +0 -498
- package/dist/records-v2/CreditNoteRecord.d.ts +0 -272
- package/dist/records-v2/CreditNoteRecord.js +0 -390
- package/dist/records-v2/CrmDatasetRecord.d.ts +0 -435
- package/dist/records-v2/CrmDatasetRecord.js +0 -591
- package/dist/records-v2/CustomerDeviceAtaRecord.d.ts +0 -183
- package/dist/records-v2/CustomerDeviceAtaRecord.js +0 -252
- package/dist/records-v2/CustomerDeviceConfigurationRecord.d.ts +0 -225
- package/dist/records-v2/CustomerDeviceConfigurationRecord.js +0 -313
- package/dist/records-v2/CustomerDeviceOntRecord.d.ts +0 -457
- package/dist/records-v2/CustomerDeviceOntRecord.js +0 -688
- package/dist/records-v2/CustomerDeviceRouterRecord.d.ts +0 -361
- package/dist/records-v2/CustomerDeviceRouterRecord.js +0 -525
- package/dist/records-v2/CustomerPhonePortingRecord.d.ts +0 -183
- package/dist/records-v2/CustomerPhonePortingRecord.js +0 -252
- package/dist/records-v2/DiscountRecord.d.ts +0 -312
- package/dist/records-v2/DiscountRecord.js +0 -456
- package/dist/records-v2/EmailRecord.d.ts +0 -882
- package/dist/records-v2/EmailRecord.js +0 -1167
- package/dist/records-v2/EmailSenderRecord.js +0 -320
- package/dist/records-v2/EmailTemplateRecord.d.ts +0 -211
- package/dist/records-v2/EmailTemplateRecord.js +0 -275
- package/dist/records-v2/FieldServiceDispatchedProductRecord.d.ts +0 -237
- package/dist/records-v2/FieldServiceDispatchedProductRecord.js +0 -402
- package/dist/records-v2/FieldServiceProductRecord.d.ts +0 -363
- package/dist/records-v2/FieldServiceProductRecord.js +0 -490
- package/dist/records-v2/FileRecord.d.ts +0 -1373
- package/dist/records-v2/FileRecord.js +0 -2124
- package/dist/records-v2/ImpersonationTrackerRecord.d.ts +0 -225
- package/dist/records-v2/ImpersonationTrackerRecord.js +0 -313
- package/dist/records-v2/InternalInstallAuditRecord.d.ts +0 -244
- package/dist/records-v2/InternalInstallAuditRecord.js +0 -346
- package/dist/records-v2/InvoiceItemRecord.d.ts +0 -204
- package/dist/records-v2/InvoiceItemRecord.js +0 -291
- package/dist/records-v2/InvoiceRecord.d.ts +0 -753
- package/dist/records-v2/InvoiceRecord.js +0 -1087
- package/dist/records-v2/KnowledgeArticleRecord.d.ts +0 -289
- package/dist/records-v2/KnowledgeArticleRecord.js +0 -397
- package/dist/records-v2/LeadRecord.d.ts +0 -581
- package/dist/records-v2/LeadRecord.js +0 -839
- package/dist/records-v2/MessageRecord.d.ts +0 -261
- package/dist/records-v2/MessageRecord.js +0 -362
- package/dist/records-v2/NetworkDeviceRecord.d.ts +0 -232
- package/dist/records-v2/NetworkDeviceRecord.js +0 -312
- package/dist/records-v2/NoteRecord.d.ts +0 -1370
- package/dist/records-v2/NoteRecord.js +0 -2173
- package/dist/records-v2/OfferRecord.d.ts +0 -343
- package/dist/records-v2/OfferRecord.js +0 -475
- package/dist/records-v2/OhAuditOfInstallationRecord.d.ts +0 -245
- package/dist/records-v2/OhAuditOfInstallationRecord.js +0 -346
- package/dist/records-v2/OhExternalAuditRecord.d.ts +0 -245
- package/dist/records-v2/OhExternalAuditRecord.js +0 -346
- package/dist/records-v2/OhInProgressAuditRecord.d.ts +0 -244
- package/dist/records-v2/OhInProgressAuditRecord.js +0 -346
- package/dist/records-v2/OhInstallationAuditRecord.d.ts +0 -244
- package/dist/records-v2/OhInstallationAuditRecord.js +0 -346
- package/dist/records-v2/OhRetroAuditRecord.d.ts +0 -244
- package/dist/records-v2/OhRetroAuditRecord.js +0 -346
- package/dist/records-v2/OneTouchSwitchRecord.d.ts +0 -473
- package/dist/records-v2/OneTouchSwitchRecord.js +0 -686
- package/dist/records-v2/OntReplacementApprovalRecord.d.ts +0 -253
- package/dist/records-v2/OntReplacementApprovalRecord.js +0 -353
- package/dist/records-v2/OrderCheckRecord.d.ts +0 -213
- package/dist/records-v2/OrderCheckRecord.js +0 -299
- package/dist/records-v2/OrderItemRecord.d.ts +0 -556
- package/dist/records-v2/OrderItemRecord.js +0 -829
- package/dist/records-v2/OrderKciRecord.js +0 -280
- package/dist/records-v2/OrderRecord.d.ts +0 -2074
- package/dist/records-v2/OrderRecord.js +0 -3063
- package/dist/records-v2/OutageRecord.d.ts +0 -201
- package/dist/records-v2/OutageRecord.js +0 -273
- package/dist/records-v2/OverlayRealA55Record.d.ts +0 -243
- package/dist/records-v2/OverlayRealA55Record.js +0 -339
- package/dist/records-v2/PICRequestRecord.d.ts +0 -390
- package/dist/records-v2/PICRequestRecord.js +0 -544
- package/dist/records-v2/PaymentMethodRecord.d.ts +0 -312
- package/dist/records-v2/PaymentMethodRecord.js +0 -456
- package/dist/records-v2/PaymentMethodRefundRecord.d.ts +0 -485
- package/dist/records-v2/PaymentMethodRefundRecord.js +0 -719
- package/dist/records-v2/PaymentRecord.d.ts +0 -449
- package/dist/records-v2/PaymentRecord.js +0 -577
- package/dist/records-v2/PermissionToFailRecord.d.ts +0 -252
- package/dist/records-v2/PermissionToFailRecord.js +0 -357
- package/dist/records-v2/PgAccountValidationRecord.d.ts +0 -184
- package/dist/records-v2/PgAccountValidationRecord.js +0 -243
- package/dist/records-v2/PgContactRecord.d.ts +0 -253
- package/dist/records-v2/PgDirectDebitFileRecord.d.ts +0 -673
- package/dist/records-v2/PgDirectDebitFileRecord.js +0 -835
- package/dist/records-v2/PgDisputeRecord.d.ts +0 -325
- package/dist/records-v2/PgDisputeRecord.js +0 -432
- package/dist/records-v2/PgFileAllocationRecord.d.ts +0 -415
- package/dist/records-v2/PgFileAllocationRecord.js +0 -541
- package/dist/records-v2/PgLogRecord.d.ts +0 -184
- package/dist/records-v2/PgLogRecord.js +0 -243
- package/dist/records-v2/PgPaymentMethodRecord.d.ts +0 -726
- package/dist/records-v2/PgPaymentMethodRecord.js +0 -912
- package/dist/records-v2/PgSortCodeSubstitutionRecord.d.ts +0 -184
- package/dist/records-v2/PgSortCodeSubstitutionRecord.js +0 -243
- package/dist/records-v2/PgTransactionRecord.d.ts +0 -909
- package/dist/records-v2/PgTransactionRecord.js +0 -1133
- package/dist/records-v2/PgVocalinkRecord.d.ts +0 -184
- package/dist/records-v2/PgVocalinkRecord.js +0 -243
- package/dist/records-v2/PgWebhookAttemptRecord.d.ts +0 -205
- package/dist/records-v2/PgWebhookRecord.d.ts +0 -360
- package/dist/records-v2/PgWebhookRecord.js +0 -502
- package/dist/records-v2/PhoneNumberRecord.d.ts +0 -205
- package/dist/records-v2/PhoneNumberRecord.js +0 -292
- package/dist/records-v2/PriceBookRecord.d.ts +0 -212
- package/dist/records-v2/PriceBookRecord.js +0 -291
- package/dist/records-v2/ProductRecord.d.ts +0 -783
- package/dist/records-v2/ProductRecord.js +0 -995
- package/dist/records-v2/PushNotificationRecord.d.ts +0 -353
- package/dist/records-v2/PushNotificationRecord.js +0 -518
- package/dist/records-v2/ReferralRecord.d.ts +0 -455
- package/dist/records-v2/ReferralRecord.js +0 -622
- package/dist/records-v2/RemediationOutcomeFormRecord.d.ts +0 -244
- package/dist/records-v2/RemediationOutcomeFormRecord.js +0 -346
- package/dist/records-v2/RemediationRequiredReasonRecord.d.ts +0 -265
- package/dist/records-v2/RemediationRequiredReasonRecord.js +0 -379
- package/dist/records-v2/ReturnsRecord.js +0 -390
- package/dist/records-v2/RewardRecord.d.ts +0 -364
- package/dist/records-v2/RewardRecord.js +0 -500
- package/dist/records-v2/SalesTerritoryRecord.d.ts +0 -269
- package/dist/records-v2/SalesTerritoryRecord.js +0 -369
- package/dist/records-v2/ScheduleSlotRecord.d.ts +0 -232
- package/dist/records-v2/ServiceAppointmentConfigRecord.d.ts +0 -786
- package/dist/records-v2/ServiceAppointmentConfigRecord.js +0 -990
- package/dist/records-v2/ServiceAppointmentRecord.d.ts +0 -272
- package/dist/records-v2/ServiceAppointmentRecord.js +0 -390
- package/dist/records-v2/ServiceRecord.d.ts +0 -202
- package/dist/records-v2/ServiceRecord.js +0 -284
- package/dist/records-v2/ServiceVisitAuditRecord.d.ts +0 -245
- package/dist/records-v2/ServiceVisitAuditRecord.js +0 -346
- package/dist/records-v2/SiteSpecificRiskAssessmentOutcomeFormRecord.d.ts +0 -272
- package/dist/records-v2/SiteSpecificRiskAssessmentOutcomeFormRecord.js +0 -378
- package/dist/records-v2/SmsMessageRecord.d.ts +0 -337
- package/dist/records-v2/SmsMessageRecord.js +0 -477
- package/dist/records-v2/SweeperMaintenanceAuditRecord.d.ts +0 -244
- package/dist/records-v2/SweeperMaintenanceAuditRecord.js +0 -346
- package/dist/records-v2/TeamRecord.d.ts +0 -293
- package/dist/records-v2/TeamRecord.js +0 -431
- package/dist/records-v2/TestEntityForVisualBuilderRecord.d.ts +0 -392
- package/dist/records-v2/TestEntityForVisualBuilderRecord.js +0 -557
- package/dist/records-v2/TimeSlotRecord.d.ts +0 -213
- package/dist/records-v2/TimeSlotRecord.js +0 -299
- package/dist/records-v2/TransactionRecord.d.ts +0 -565
- package/dist/records-v2/TransactionRecord.js +0 -767
- package/dist/records-v2/TwilioUserUpdateRecord.d.ts +0 -205
- package/dist/records-v2/TwilioUserUpdateRecord.js +0 -280
- package/dist/records-v2/UgAuditOfInstallationRecord.d.ts +0 -244
- package/dist/records-v2/UgAuditOfInstallationRecord.js +0 -346
- package/dist/records-v2/UgExternalAuditRecord.d.ts +0 -245
- package/dist/records-v2/UgExternalAuditRecord.js +0 -346
- package/dist/records-v2/UgInProgressAuditRecord.d.ts +0 -244
- package/dist/records-v2/UgInProgressAuditRecord.js +0 -346
- package/dist/records-v2/UgInstallationAuditRecord.d.ts +0 -244
- package/dist/records-v2/UgInstallationAuditRecord.js +0 -346
- package/dist/records-v2/UgRetroAuditRecord.d.ts +0 -244
- package/dist/records-v2/UgRetroAuditRecord.js +0 -346
- package/dist/records-v2/UserRecord.d.ts +0 -563
- package/dist/records-v2/UserRecord.js +0 -886
- package/dist/records-v2/VisitRecord.d.ts +0 -312
- package/dist/records-v2/VisitRecord.js +0 -456
- package/dist/records-v2/VoiceConfigurationRecord.d.ts +0 -242
- package/dist/records-v2/VoiceConfigurationRecord.js +0 -335
- package/dist/records-v2/WayleaveAuditRecord.d.ts +0 -245
- package/dist/records-v2/WayleaveAuditRecord.js +0 -346
- package/dist/records-v2/WorkOrderRecord.d.ts +0 -7850
- package/dist/records-v2/WorkOrderRecord.js +0 -11607
- package/dist/records-v2/YfFieldServiceVisitRecord.d.ts +0 -245
- package/dist/records-v2/YfFieldServiceVisitRecord.js +0 -346
- package/dist/records-v2/YfStockAuditRecord.d.ts +0 -292
- package/dist/records-v2/YfStockAuditRecord.js +0 -411
|
@@ -1,2552 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* ServiceAppointmentConfig Entity Definition
|
|
3
|
-
*
|
|
4
|
-
* ServiceAppointmentConfig entity for Field Operations operations. Part of FieldServiceModule. Contains business data for field operations workflows.
|
|
5
|
-
*
|
|
6
|
-
* @module FieldServiceModule
|
|
7
|
-
* @entity ServiceAppointmentConfig
|
|
8
|
-
* @schemaId 3cf22169-1376-4087-8ffd-bedc7bb5f60f
|
|
9
|
-
*
|
|
10
|
-
* AUTO-GENERATED - DO NOT EDIT DIRECTLY
|
|
11
|
-
* Generated from Odin schema definition
|
|
12
|
-
*/
|
|
13
|
-
import { OdinRecord, OdinLink, LinkedOdinRecord } from '@d19n/odin-types/dist/core';
|
|
14
|
-
import { UserProperties } from './User';
|
|
15
|
-
import { NoteProperties } from './Note';
|
|
16
|
-
import { ServiceAppointmentProperties } from './ServiceAppointment';
|
|
17
|
-
import { ChangeReasonProperties } from './ChangeReason';
|
|
18
|
-
import { WorkOrderProperties } from './WorkOrder';
|
|
19
|
-
import { ScheduleSlotProperties } from './ScheduleSlot';
|
|
20
|
-
import { RegionProperties } from './Region';
|
|
21
|
-
/**
|
|
22
|
-
* Available types for ServiceAppointmentConfig records
|
|
23
|
-
*/
|
|
24
|
-
export declare enum ServiceAppointmentConfigEntityTypes {
|
|
25
|
-
/** Finance schedule */
|
|
26
|
-
FINANCE = "FINANCE",
|
|
27
|
-
/** Inspection */
|
|
28
|
-
INSPECTION = "INSPECTION",
|
|
29
|
-
/** install appointments */
|
|
30
|
-
INSTALL = "INSTALL",
|
|
31
|
-
/** schedules allowing both install and service bookings */
|
|
32
|
-
INSTALL_SERVICE = "INSTALL_SERVICE",
|
|
33
|
-
/** Network adjustment schedule */
|
|
34
|
-
NETWORK_ADJUSTMENT = "NETWORK_ADJUSTMENT",
|
|
35
|
-
/** Planning schedule */
|
|
36
|
-
PLANNING = "PLANNING",
|
|
37
|
-
/** Pre-pull schedule type */
|
|
38
|
-
PRE_PULL = "PRE_PULL",
|
|
39
|
-
/** Remediation */
|
|
40
|
-
REMEDIATION = "REMEDIATION",
|
|
41
|
-
/** service appointments */
|
|
42
|
-
SERVICE = "SERVICE",
|
|
43
|
-
/** Wayleave schedule */
|
|
44
|
-
WAYLEAVE = "WAYLEAVE"
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Valid values for ServiceAppointmentConfig.Region
|
|
48
|
-
*
|
|
49
|
-
* the region selection (Field Operations - ServiceAppointmentConfig)
|
|
50
|
-
*
|
|
51
|
-
* @remarks Available options:
|
|
52
|
-
* - `EAST` - East
|
|
53
|
-
* - `EAST_MIDLANDS` - East Midlands
|
|
54
|
-
* - `NORTH_EAST` - North East
|
|
55
|
-
* - `NORTHERN_IRELAND` - Northern Ireland
|
|
56
|
-
* - `NORTH_WEST` - North West
|
|
57
|
-
* - `SCOTLAND` - Scotland
|
|
58
|
-
* - `SOUTH_CENTRAL` - South Central
|
|
59
|
-
* - `SOUTH_EAST` - South East
|
|
60
|
-
* - `SOUTH_WEST` - South West
|
|
61
|
-
* - `WALES` - Wales
|
|
62
|
-
* - `WEST_MIDLANDS` - West Midlands
|
|
63
|
-
* - `YORKSHIRE_AND_THE_HUMBER` - Yorkshire and The Humber
|
|
64
|
-
*/
|
|
65
|
-
export declare enum ServiceAppointmentConfigRegion {
|
|
66
|
-
EAST = "EAST",
|
|
67
|
-
EAST_MIDLANDS = "EAST_MIDLANDS",
|
|
68
|
-
NORTH_EAST = "NORTH_EAST",
|
|
69
|
-
NORTHERN_IRELAND = "NORTHERN_IRELAND",
|
|
70
|
-
NORTH_WEST = "NORTH_WEST",
|
|
71
|
-
SCOTLAND = "SCOTLAND",
|
|
72
|
-
SOUTH_CENTRAL = "SOUTH_CENTRAL",
|
|
73
|
-
SOUTH_EAST = "SOUTH_EAST",
|
|
74
|
-
SOUTH_WEST = "SOUTH_WEST",
|
|
75
|
-
WALES = "WALES",
|
|
76
|
-
WEST_MIDLANDS = "WEST_MIDLANDS",
|
|
77
|
-
YORKSHIRE_AND_THE_HUMBER = "YORKSHIRE_AND_THE_HUMBER"
|
|
78
|
-
}
|
|
79
|
-
/**
|
|
80
|
-
* Valid values for ServiceAppointmentConfig.EnablePrePull
|
|
81
|
-
*
|
|
82
|
-
* Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
83
|
-
*
|
|
84
|
-
* @remarks Available options:
|
|
85
|
-
* - `NO` - No
|
|
86
|
-
* - `YES` - Yes
|
|
87
|
-
*/
|
|
88
|
-
export declare enum ServiceAppointmentConfigEnablePrePull {
|
|
89
|
-
NO = "NO",
|
|
90
|
-
YES = "YES"
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* Valid values for ServiceAppointmentConfig.Contractor
|
|
94
|
-
*
|
|
95
|
-
* the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
96
|
-
*
|
|
97
|
-
* @remarks Available options:
|
|
98
|
-
* - `THREHUNDREDSIXTY_NETWORKS` - 360 Networks
|
|
99
|
-
* - `C&L`
|
|
100
|
-
* - `FAIRFIELD_FIBRE` - Fairfield Fibre
|
|
101
|
-
* - `FNIL`
|
|
102
|
-
* - `G_FORCE` - G Force
|
|
103
|
-
* - `GL_TELECOMS` - GL Telecoms
|
|
104
|
-
* - `GNS`
|
|
105
|
-
* - `GNS_INSTALLS` - GNS Installs
|
|
106
|
-
* - `KN_CIRCET` - KN Circet
|
|
107
|
-
* - `KN_NI`
|
|
108
|
-
* - `LIGHTSOURCE` - Light Source
|
|
109
|
-
* - `LIMITLESS_FIBRE` - Limitless Fibre
|
|
110
|
-
* - `MAP_GROUP` - MAP Group
|
|
111
|
-
* - `MJ_QUINN` - MJ Quinn
|
|
112
|
-
* - `NANO_FIBRE` - Nano Fibre
|
|
113
|
-
* - ... and 7 more
|
|
114
|
-
*/
|
|
115
|
-
export declare enum ServiceAppointmentConfigContractor {
|
|
116
|
-
C_L = "C&L",
|
|
117
|
-
FAIRFIELD_FIBRE = "FAIRFIELD_FIBRE",
|
|
118
|
-
FNIL = "FNIL",
|
|
119
|
-
G_FORCE = "G_FORCE",
|
|
120
|
-
GL_TELECOMS = "GL_TELECOMS",
|
|
121
|
-
GNS = "GNS",
|
|
122
|
-
GNS_INSTALLS = "GNS_INSTALLS",
|
|
123
|
-
KN_CIRCET = "KN_CIRCET",
|
|
124
|
-
KN_NI = "KN_NI",
|
|
125
|
-
LIGHT_SOURCE = "LIGHTSOURCE",
|
|
126
|
-
LIMITLESS_FIBRE = "LIMITLESS_FIBRE",
|
|
127
|
-
MAP_GROUP = "MAP_GROUP",
|
|
128
|
-
MJ_QUINN = "MJ_QUINN",
|
|
129
|
-
NANO_FIBRE = "NANO_FIBRE",
|
|
130
|
-
NETOMNIA = "NETOMNIA",
|
|
131
|
-
NETS = "NETS",
|
|
132
|
-
NOVO = "NOVO",
|
|
133
|
-
PICH = "PICH",
|
|
134
|
-
S_M = "S_M",
|
|
135
|
-
STL = "STL",
|
|
136
|
-
YOU_FIBRE = "YOUFIBRE"
|
|
137
|
-
}
|
|
138
|
-
/**
|
|
139
|
-
* Property keys for ServiceAppointmentConfig
|
|
140
|
-
* Use these constants instead of string literals for type safety
|
|
141
|
-
*/
|
|
142
|
-
export declare enum ServiceAppointmentConfigPropertyKeys {
|
|
143
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
144
|
-
WednesdayAm = "Wednesday_AM",
|
|
145
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
146
|
-
FridayPm = "Friday_PM",
|
|
147
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
148
|
-
MondayAm = "Monday_AM",
|
|
149
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
150
|
-
SaturdayPm = "Saturday_PM",
|
|
151
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
152
|
-
TuesdayAm = "Tuesday_AM",
|
|
153
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team. */
|
|
154
|
-
Name = "Name",
|
|
155
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
156
|
-
SaturdayAm = "Saturday_AM",
|
|
157
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
158
|
-
ThursdayPm = "Thursday_PM",
|
|
159
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
160
|
-
MondayPm = "Monday_PM",
|
|
161
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
162
|
-
SundayAm = "Sunday_AM",
|
|
163
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
164
|
-
WednesdayPm = "Wednesday_PM",
|
|
165
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
166
|
-
ThursdayAm = "Thursday_AM",
|
|
167
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig) */
|
|
168
|
-
Description = "Description",
|
|
169
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig) */
|
|
170
|
-
AvailableFrom = "AvailableFrom",
|
|
171
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig) */
|
|
172
|
-
Priority = "Priority",
|
|
173
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig) */
|
|
174
|
-
SupervisorId = "SupervisorId",
|
|
175
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig) */
|
|
176
|
-
AvailableTo = "AvailableTo",
|
|
177
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig) */
|
|
178
|
-
BookingDelay = "BookingDelay",
|
|
179
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig) */
|
|
180
|
-
MaxAdvanceBooking = "MaxAdvanceBooking",
|
|
181
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig) */
|
|
182
|
-
ManagerId = "ManagerId",
|
|
183
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig) */
|
|
184
|
-
Region = "Region",
|
|
185
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig) */
|
|
186
|
-
EnablePrePull = "EnablePrePull",
|
|
187
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig) */
|
|
188
|
-
Contractor = "Contractor",
|
|
189
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
190
|
-
FridayAm = "Friday_AM",
|
|
191
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig) */
|
|
192
|
-
Date = "Date",
|
|
193
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig) */
|
|
194
|
-
ExPolygonId = "ExPolygonId",
|
|
195
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig) */
|
|
196
|
-
Pm = "PM",
|
|
197
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
198
|
-
SundayPm = "Sunday_PM",
|
|
199
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig) */
|
|
200
|
-
TuesdayPm = "Tuesday_PM",
|
|
201
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig) */
|
|
202
|
-
Am = "AM",
|
|
203
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig) */
|
|
204
|
-
IsDefault = "IsDefault",
|
|
205
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig) */
|
|
206
|
-
AddressTypes = "AddressTypes",
|
|
207
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig) */
|
|
208
|
-
RegionId = "RegionId"
|
|
209
|
-
}
|
|
210
|
-
/**
|
|
211
|
-
* Properties for ServiceAppointmentConfig records
|
|
212
|
-
*
|
|
213
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
214
|
-
*/
|
|
215
|
-
export interface ServiceAppointmentConfigProperties {
|
|
216
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
217
|
-
*
|
|
218
|
-
* @type {NUMBER}
|
|
219
|
-
* @hidden This field is hidden in the UI
|
|
220
|
-
*/
|
|
221
|
-
WednesdayAm: number;
|
|
222
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
223
|
-
*
|
|
224
|
-
* @type {NUMBER}
|
|
225
|
-
* @hidden This field is hidden in the UI
|
|
226
|
-
*/
|
|
227
|
-
FridayPm: number;
|
|
228
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
229
|
-
*
|
|
230
|
-
* @type {NUMBER}
|
|
231
|
-
* @hidden This field is hidden in the UI
|
|
232
|
-
*/
|
|
233
|
-
MondayAm: number;
|
|
234
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
235
|
-
*
|
|
236
|
-
* @type {NUMBER}
|
|
237
|
-
* @hidden This field is hidden in the UI
|
|
238
|
-
*/
|
|
239
|
-
SaturdayPm: number;
|
|
240
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
241
|
-
*
|
|
242
|
-
* @type {NUMBER}
|
|
243
|
-
* @hidden This field is hidden in the UI
|
|
244
|
-
*/
|
|
245
|
-
TuesdayAm: number;
|
|
246
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
247
|
-
*
|
|
248
|
-
* @type {TEXT}
|
|
249
|
-
*/
|
|
250
|
-
Name: string;
|
|
251
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
252
|
-
*
|
|
253
|
-
* @type {NUMBER}
|
|
254
|
-
* @hidden This field is hidden in the UI
|
|
255
|
-
*/
|
|
256
|
-
SaturdayAm: number;
|
|
257
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
258
|
-
*
|
|
259
|
-
* @type {NUMBER}
|
|
260
|
-
* @hidden This field is hidden in the UI
|
|
261
|
-
*/
|
|
262
|
-
ThursdayPm: number;
|
|
263
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
264
|
-
*
|
|
265
|
-
* @type {NUMBER}
|
|
266
|
-
* @hidden This field is hidden in the UI
|
|
267
|
-
*/
|
|
268
|
-
MondayPm: number;
|
|
269
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
270
|
-
*
|
|
271
|
-
* @type {NUMBER}
|
|
272
|
-
* @hidden This field is hidden in the UI
|
|
273
|
-
*/
|
|
274
|
-
SundayAm: number;
|
|
275
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
276
|
-
*
|
|
277
|
-
* @type {NUMBER}
|
|
278
|
-
* @hidden This field is hidden in the UI
|
|
279
|
-
*/
|
|
280
|
-
WednesdayPm: number;
|
|
281
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
282
|
-
*
|
|
283
|
-
* @type {NUMBER}
|
|
284
|
-
* @hidden This field is hidden in the UI
|
|
285
|
-
*/
|
|
286
|
-
ThursdayAm: number;
|
|
287
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
288
|
-
*
|
|
289
|
-
* @type {TEXT_LONG}
|
|
290
|
-
*/
|
|
291
|
-
Description: string;
|
|
292
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
293
|
-
*
|
|
294
|
-
* @type {DATE}
|
|
295
|
-
* @format DD/MM/YYYY
|
|
296
|
-
*/
|
|
297
|
-
AvailableFrom: string;
|
|
298
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
299
|
-
*
|
|
300
|
-
* @type {NUMBER}
|
|
301
|
-
*/
|
|
302
|
-
Priority: number;
|
|
303
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
304
|
-
*
|
|
305
|
-
* @type {LOOKUP}
|
|
306
|
-
* @hidden This field is hidden in the UI
|
|
307
|
-
*/
|
|
308
|
-
SupervisorId: string;
|
|
309
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
310
|
-
*
|
|
311
|
-
* @type {DATE}
|
|
312
|
-
* @format DD/MM/YYYY
|
|
313
|
-
* @default
|
|
314
|
-
*/
|
|
315
|
-
AvailableTo: string;
|
|
316
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
317
|
-
*
|
|
318
|
-
* @type {NUMBER}
|
|
319
|
-
*/
|
|
320
|
-
BookingDelay: number;
|
|
321
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
322
|
-
*
|
|
323
|
-
* @type {NUMBER}
|
|
324
|
-
*/
|
|
325
|
-
MaxAdvanceBooking: number;
|
|
326
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
327
|
-
*
|
|
328
|
-
* @type {LOOKUP}
|
|
329
|
-
* @hidden This field is hidden in the UI
|
|
330
|
-
*/
|
|
331
|
-
ManagerId: string;
|
|
332
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
333
|
-
*
|
|
334
|
-
* @type {ENUM}
|
|
335
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
336
|
-
*/
|
|
337
|
-
Region: ServiceAppointmentConfigRegion;
|
|
338
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
339
|
-
*
|
|
340
|
-
* @type {ENUM}
|
|
341
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
342
|
-
*/
|
|
343
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
344
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
345
|
-
*
|
|
346
|
-
* @type {ENUM}
|
|
347
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
348
|
-
*/
|
|
349
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
350
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
351
|
-
*
|
|
352
|
-
* @type {NUMBER}
|
|
353
|
-
* @hidden This field is hidden in the UI
|
|
354
|
-
*/
|
|
355
|
-
FridayAm: number;
|
|
356
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
357
|
-
*
|
|
358
|
-
* @type {DATE}
|
|
359
|
-
* @format DD/MM/YYYY
|
|
360
|
-
* @default
|
|
361
|
-
* @hidden This field is hidden in the UI
|
|
362
|
-
*/
|
|
363
|
-
Date: string;
|
|
364
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
365
|
-
*
|
|
366
|
-
* @type {TEXT}
|
|
367
|
-
*/
|
|
368
|
-
ExPolygonId: string;
|
|
369
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
370
|
-
*
|
|
371
|
-
* @type {NUMBER}
|
|
372
|
-
* @hidden This field is hidden in the UI
|
|
373
|
-
*/
|
|
374
|
-
Pm: number;
|
|
375
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
376
|
-
*
|
|
377
|
-
* @type {NUMBER}
|
|
378
|
-
* @hidden This field is hidden in the UI
|
|
379
|
-
*/
|
|
380
|
-
SundayPm: number;
|
|
381
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
382
|
-
*
|
|
383
|
-
* @type {NUMBER}
|
|
384
|
-
* @hidden This field is hidden in the UI
|
|
385
|
-
*/
|
|
386
|
-
TuesdayPm: number;
|
|
387
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
388
|
-
*
|
|
389
|
-
* @type {NUMBER}
|
|
390
|
-
* @hidden This field is hidden in the UI
|
|
391
|
-
*/
|
|
392
|
-
Am: number;
|
|
393
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
394
|
-
*
|
|
395
|
-
* @type {BOOLEAN}
|
|
396
|
-
* @default true
|
|
397
|
-
*/
|
|
398
|
-
IsDefault: boolean;
|
|
399
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
400
|
-
*
|
|
401
|
-
* @type {TEXT}
|
|
402
|
-
* @hidden This field is hidden in the UI
|
|
403
|
-
*/
|
|
404
|
-
AddressTypes: string;
|
|
405
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
406
|
-
*
|
|
407
|
-
* @type {LOOKUP}
|
|
408
|
-
* @hidden This field is hidden in the UI
|
|
409
|
-
*/
|
|
410
|
-
RegionId: string;
|
|
411
|
-
}
|
|
412
|
-
/**
|
|
413
|
-
* Properties for FINANCE ServiceAppointmentConfig records
|
|
414
|
-
*
|
|
415
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
416
|
-
*/
|
|
417
|
-
export interface FinanceServiceAppointmentConfigProperties {
|
|
418
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
419
|
-
*
|
|
420
|
-
* @type {NUMBER}
|
|
421
|
-
* @hidden This field is hidden in the UI
|
|
422
|
-
*/
|
|
423
|
-
WednesdayAm: number;
|
|
424
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
425
|
-
*
|
|
426
|
-
* @type {NUMBER}
|
|
427
|
-
* @hidden This field is hidden in the UI
|
|
428
|
-
*/
|
|
429
|
-
FridayPm: number;
|
|
430
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
431
|
-
*
|
|
432
|
-
* @type {NUMBER}
|
|
433
|
-
* @hidden This field is hidden in the UI
|
|
434
|
-
*/
|
|
435
|
-
MondayAm: number;
|
|
436
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
437
|
-
*
|
|
438
|
-
* @type {NUMBER}
|
|
439
|
-
* @hidden This field is hidden in the UI
|
|
440
|
-
*/
|
|
441
|
-
SaturdayPm: number;
|
|
442
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
443
|
-
*
|
|
444
|
-
* @type {NUMBER}
|
|
445
|
-
* @hidden This field is hidden in the UI
|
|
446
|
-
*/
|
|
447
|
-
TuesdayAm: number;
|
|
448
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
449
|
-
*
|
|
450
|
-
* @type {TEXT}
|
|
451
|
-
*/
|
|
452
|
-
Name: string;
|
|
453
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
454
|
-
*
|
|
455
|
-
* @type {NUMBER}
|
|
456
|
-
* @hidden This field is hidden in the UI
|
|
457
|
-
*/
|
|
458
|
-
SaturdayAm: number;
|
|
459
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
460
|
-
*
|
|
461
|
-
* @type {NUMBER}
|
|
462
|
-
* @hidden This field is hidden in the UI
|
|
463
|
-
*/
|
|
464
|
-
ThursdayPm: number;
|
|
465
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
466
|
-
*
|
|
467
|
-
* @type {NUMBER}
|
|
468
|
-
* @hidden This field is hidden in the UI
|
|
469
|
-
*/
|
|
470
|
-
MondayPm: number;
|
|
471
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
472
|
-
*
|
|
473
|
-
* @type {NUMBER}
|
|
474
|
-
* @hidden This field is hidden in the UI
|
|
475
|
-
*/
|
|
476
|
-
SundayAm: number;
|
|
477
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
478
|
-
*
|
|
479
|
-
* @type {NUMBER}
|
|
480
|
-
* @hidden This field is hidden in the UI
|
|
481
|
-
*/
|
|
482
|
-
WednesdayPm: number;
|
|
483
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
484
|
-
*
|
|
485
|
-
* @type {NUMBER}
|
|
486
|
-
* @hidden This field is hidden in the UI
|
|
487
|
-
*/
|
|
488
|
-
ThursdayAm: number;
|
|
489
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
490
|
-
*
|
|
491
|
-
* @type {TEXT_LONG}
|
|
492
|
-
*/
|
|
493
|
-
Description: string;
|
|
494
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
495
|
-
*
|
|
496
|
-
* @type {DATE}
|
|
497
|
-
* @format DD/MM/YYYY
|
|
498
|
-
*/
|
|
499
|
-
AvailableFrom: string;
|
|
500
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
501
|
-
*
|
|
502
|
-
* @type {NUMBER}
|
|
503
|
-
*/
|
|
504
|
-
Priority: number;
|
|
505
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
506
|
-
*
|
|
507
|
-
* @type {LOOKUP}
|
|
508
|
-
* @hidden This field is hidden in the UI
|
|
509
|
-
*/
|
|
510
|
-
SupervisorId: string;
|
|
511
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
512
|
-
*
|
|
513
|
-
* @type {DATE}
|
|
514
|
-
* @format DD/MM/YYYY
|
|
515
|
-
* @default
|
|
516
|
-
*/
|
|
517
|
-
AvailableTo: string;
|
|
518
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
519
|
-
*
|
|
520
|
-
* @type {NUMBER}
|
|
521
|
-
*/
|
|
522
|
-
BookingDelay: number;
|
|
523
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
524
|
-
*
|
|
525
|
-
* @type {NUMBER}
|
|
526
|
-
*/
|
|
527
|
-
MaxAdvanceBooking: number;
|
|
528
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
529
|
-
*
|
|
530
|
-
* @type {LOOKUP}
|
|
531
|
-
* @hidden This field is hidden in the UI
|
|
532
|
-
*/
|
|
533
|
-
ManagerId: string;
|
|
534
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
535
|
-
*
|
|
536
|
-
* @type {ENUM}
|
|
537
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
538
|
-
*/
|
|
539
|
-
Region: ServiceAppointmentConfigRegion;
|
|
540
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
541
|
-
*
|
|
542
|
-
* @type {ENUM}
|
|
543
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
544
|
-
*/
|
|
545
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
546
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
547
|
-
*
|
|
548
|
-
* @type {ENUM}
|
|
549
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
550
|
-
*/
|
|
551
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
552
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
553
|
-
*
|
|
554
|
-
* @type {NUMBER}
|
|
555
|
-
* @hidden This field is hidden in the UI
|
|
556
|
-
*/
|
|
557
|
-
FridayAm: number;
|
|
558
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
559
|
-
*
|
|
560
|
-
* @type {DATE}
|
|
561
|
-
* @format DD/MM/YYYY
|
|
562
|
-
* @default
|
|
563
|
-
* @hidden This field is hidden in the UI
|
|
564
|
-
*/
|
|
565
|
-
Date: string;
|
|
566
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
567
|
-
*
|
|
568
|
-
* @type {TEXT}
|
|
569
|
-
*/
|
|
570
|
-
ExPolygonId: string;
|
|
571
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
572
|
-
*
|
|
573
|
-
* @type {NUMBER}
|
|
574
|
-
* @hidden This field is hidden in the UI
|
|
575
|
-
*/
|
|
576
|
-
Pm: number;
|
|
577
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
578
|
-
*
|
|
579
|
-
* @type {NUMBER}
|
|
580
|
-
* @hidden This field is hidden in the UI
|
|
581
|
-
*/
|
|
582
|
-
SundayPm: number;
|
|
583
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
584
|
-
*
|
|
585
|
-
* @type {NUMBER}
|
|
586
|
-
* @hidden This field is hidden in the UI
|
|
587
|
-
*/
|
|
588
|
-
TuesdayPm: number;
|
|
589
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
590
|
-
*
|
|
591
|
-
* @type {NUMBER}
|
|
592
|
-
* @hidden This field is hidden in the UI
|
|
593
|
-
*/
|
|
594
|
-
Am: number;
|
|
595
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
596
|
-
*
|
|
597
|
-
* @type {BOOLEAN}
|
|
598
|
-
* @default true
|
|
599
|
-
*/
|
|
600
|
-
IsDefault: boolean;
|
|
601
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
602
|
-
*
|
|
603
|
-
* @type {TEXT}
|
|
604
|
-
* @hidden This field is hidden in the UI
|
|
605
|
-
*/
|
|
606
|
-
AddressTypes: string;
|
|
607
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
608
|
-
*
|
|
609
|
-
* @type {LOOKUP}
|
|
610
|
-
* @hidden This field is hidden in the UI
|
|
611
|
-
*/
|
|
612
|
-
RegionId: string;
|
|
613
|
-
}
|
|
614
|
-
/**
|
|
615
|
-
* Properties for INSPECTION ServiceAppointmentConfig records
|
|
616
|
-
*
|
|
617
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
618
|
-
*/
|
|
619
|
-
export interface InspectionServiceAppointmentConfigProperties {
|
|
620
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
621
|
-
*
|
|
622
|
-
* @type {NUMBER}
|
|
623
|
-
* @hidden This field is hidden in the UI
|
|
624
|
-
*/
|
|
625
|
-
WednesdayAm: number;
|
|
626
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
627
|
-
*
|
|
628
|
-
* @type {NUMBER}
|
|
629
|
-
* @hidden This field is hidden in the UI
|
|
630
|
-
*/
|
|
631
|
-
FridayPm: number;
|
|
632
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
633
|
-
*
|
|
634
|
-
* @type {NUMBER}
|
|
635
|
-
* @hidden This field is hidden in the UI
|
|
636
|
-
*/
|
|
637
|
-
MondayAm: number;
|
|
638
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
639
|
-
*
|
|
640
|
-
* @type {NUMBER}
|
|
641
|
-
* @hidden This field is hidden in the UI
|
|
642
|
-
*/
|
|
643
|
-
SaturdayPm: number;
|
|
644
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
645
|
-
*
|
|
646
|
-
* @type {NUMBER}
|
|
647
|
-
* @hidden This field is hidden in the UI
|
|
648
|
-
*/
|
|
649
|
-
TuesdayAm: number;
|
|
650
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
651
|
-
*
|
|
652
|
-
* @type {TEXT}
|
|
653
|
-
*/
|
|
654
|
-
Name: string;
|
|
655
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
656
|
-
*
|
|
657
|
-
* @type {NUMBER}
|
|
658
|
-
* @hidden This field is hidden in the UI
|
|
659
|
-
*/
|
|
660
|
-
SaturdayAm: number;
|
|
661
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
662
|
-
*
|
|
663
|
-
* @type {NUMBER}
|
|
664
|
-
* @hidden This field is hidden in the UI
|
|
665
|
-
*/
|
|
666
|
-
ThursdayPm: number;
|
|
667
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
668
|
-
*
|
|
669
|
-
* @type {NUMBER}
|
|
670
|
-
* @hidden This field is hidden in the UI
|
|
671
|
-
*/
|
|
672
|
-
MondayPm: number;
|
|
673
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
674
|
-
*
|
|
675
|
-
* @type {NUMBER}
|
|
676
|
-
* @hidden This field is hidden in the UI
|
|
677
|
-
*/
|
|
678
|
-
SundayAm: number;
|
|
679
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
680
|
-
*
|
|
681
|
-
* @type {NUMBER}
|
|
682
|
-
* @hidden This field is hidden in the UI
|
|
683
|
-
*/
|
|
684
|
-
WednesdayPm: number;
|
|
685
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
686
|
-
*
|
|
687
|
-
* @type {NUMBER}
|
|
688
|
-
* @hidden This field is hidden in the UI
|
|
689
|
-
*/
|
|
690
|
-
ThursdayAm: number;
|
|
691
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
692
|
-
*
|
|
693
|
-
* @type {TEXT_LONG}
|
|
694
|
-
*/
|
|
695
|
-
Description: string;
|
|
696
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
697
|
-
*
|
|
698
|
-
* @type {DATE}
|
|
699
|
-
* @format DD/MM/YYYY
|
|
700
|
-
*/
|
|
701
|
-
AvailableFrom: string;
|
|
702
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
703
|
-
*
|
|
704
|
-
* @type {NUMBER}
|
|
705
|
-
*/
|
|
706
|
-
Priority: number;
|
|
707
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
708
|
-
*
|
|
709
|
-
* @type {LOOKUP}
|
|
710
|
-
* @hidden This field is hidden in the UI
|
|
711
|
-
*/
|
|
712
|
-
SupervisorId: string;
|
|
713
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
714
|
-
*
|
|
715
|
-
* @type {DATE}
|
|
716
|
-
* @format DD/MM/YYYY
|
|
717
|
-
* @default
|
|
718
|
-
*/
|
|
719
|
-
AvailableTo: string;
|
|
720
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
721
|
-
*
|
|
722
|
-
* @type {NUMBER}
|
|
723
|
-
*/
|
|
724
|
-
BookingDelay: number;
|
|
725
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
726
|
-
*
|
|
727
|
-
* @type {NUMBER}
|
|
728
|
-
*/
|
|
729
|
-
MaxAdvanceBooking: number;
|
|
730
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
731
|
-
*
|
|
732
|
-
* @type {LOOKUP}
|
|
733
|
-
* @hidden This field is hidden in the UI
|
|
734
|
-
*/
|
|
735
|
-
ManagerId: string;
|
|
736
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
737
|
-
*
|
|
738
|
-
* @type {ENUM}
|
|
739
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
740
|
-
*/
|
|
741
|
-
Region: ServiceAppointmentConfigRegion;
|
|
742
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
743
|
-
*
|
|
744
|
-
* @type {ENUM}
|
|
745
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
746
|
-
*/
|
|
747
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
748
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
749
|
-
*
|
|
750
|
-
* @type {ENUM}
|
|
751
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
752
|
-
*/
|
|
753
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
754
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
755
|
-
*
|
|
756
|
-
* @type {NUMBER}
|
|
757
|
-
* @hidden This field is hidden in the UI
|
|
758
|
-
*/
|
|
759
|
-
FridayAm: number;
|
|
760
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
761
|
-
*
|
|
762
|
-
* @type {DATE}
|
|
763
|
-
* @format DD/MM/YYYY
|
|
764
|
-
* @default
|
|
765
|
-
* @hidden This field is hidden in the UI
|
|
766
|
-
*/
|
|
767
|
-
Date: string;
|
|
768
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
769
|
-
*
|
|
770
|
-
* @type {TEXT}
|
|
771
|
-
*/
|
|
772
|
-
ExPolygonId: string;
|
|
773
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
774
|
-
*
|
|
775
|
-
* @type {NUMBER}
|
|
776
|
-
* @hidden This field is hidden in the UI
|
|
777
|
-
*/
|
|
778
|
-
Pm: number;
|
|
779
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
780
|
-
*
|
|
781
|
-
* @type {NUMBER}
|
|
782
|
-
* @hidden This field is hidden in the UI
|
|
783
|
-
*/
|
|
784
|
-
SundayPm: number;
|
|
785
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
786
|
-
*
|
|
787
|
-
* @type {NUMBER}
|
|
788
|
-
* @hidden This field is hidden in the UI
|
|
789
|
-
*/
|
|
790
|
-
TuesdayPm: number;
|
|
791
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
792
|
-
*
|
|
793
|
-
* @type {NUMBER}
|
|
794
|
-
* @hidden This field is hidden in the UI
|
|
795
|
-
*/
|
|
796
|
-
Am: number;
|
|
797
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
798
|
-
*
|
|
799
|
-
* @type {BOOLEAN}
|
|
800
|
-
* @default true
|
|
801
|
-
*/
|
|
802
|
-
IsDefault: boolean;
|
|
803
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
804
|
-
*
|
|
805
|
-
* @type {TEXT}
|
|
806
|
-
* @hidden This field is hidden in the UI
|
|
807
|
-
*/
|
|
808
|
-
AddressTypes: string;
|
|
809
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
810
|
-
*
|
|
811
|
-
* @type {LOOKUP}
|
|
812
|
-
* @hidden This field is hidden in the UI
|
|
813
|
-
*/
|
|
814
|
-
RegionId: string;
|
|
815
|
-
}
|
|
816
|
-
/**
|
|
817
|
-
* Properties for INSTALL ServiceAppointmentConfig records
|
|
818
|
-
*
|
|
819
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
820
|
-
*/
|
|
821
|
-
export interface InstallServiceAppointmentConfigProperties {
|
|
822
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
823
|
-
*
|
|
824
|
-
* @type {NUMBER}
|
|
825
|
-
* @hidden This field is hidden in the UI
|
|
826
|
-
*/
|
|
827
|
-
WednesdayAm: number;
|
|
828
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
829
|
-
*
|
|
830
|
-
* @type {NUMBER}
|
|
831
|
-
* @hidden This field is hidden in the UI
|
|
832
|
-
*/
|
|
833
|
-
FridayPm: number;
|
|
834
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
835
|
-
*
|
|
836
|
-
* @type {NUMBER}
|
|
837
|
-
* @hidden This field is hidden in the UI
|
|
838
|
-
*/
|
|
839
|
-
MondayAm: number;
|
|
840
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
841
|
-
*
|
|
842
|
-
* @type {NUMBER}
|
|
843
|
-
* @hidden This field is hidden in the UI
|
|
844
|
-
*/
|
|
845
|
-
SaturdayPm: number;
|
|
846
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
847
|
-
*
|
|
848
|
-
* @type {NUMBER}
|
|
849
|
-
* @hidden This field is hidden in the UI
|
|
850
|
-
*/
|
|
851
|
-
TuesdayAm: number;
|
|
852
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
853
|
-
*
|
|
854
|
-
* @type {TEXT}
|
|
855
|
-
*/
|
|
856
|
-
Name: string;
|
|
857
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
858
|
-
*
|
|
859
|
-
* @type {NUMBER}
|
|
860
|
-
* @hidden This field is hidden in the UI
|
|
861
|
-
*/
|
|
862
|
-
SaturdayAm: number;
|
|
863
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
864
|
-
*
|
|
865
|
-
* @type {NUMBER}
|
|
866
|
-
* @hidden This field is hidden in the UI
|
|
867
|
-
*/
|
|
868
|
-
ThursdayPm: number;
|
|
869
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
870
|
-
*
|
|
871
|
-
* @type {NUMBER}
|
|
872
|
-
* @hidden This field is hidden in the UI
|
|
873
|
-
*/
|
|
874
|
-
MondayPm: number;
|
|
875
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
876
|
-
*
|
|
877
|
-
* @type {NUMBER}
|
|
878
|
-
* @hidden This field is hidden in the UI
|
|
879
|
-
*/
|
|
880
|
-
SundayAm: number;
|
|
881
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
882
|
-
*
|
|
883
|
-
* @type {NUMBER}
|
|
884
|
-
* @hidden This field is hidden in the UI
|
|
885
|
-
*/
|
|
886
|
-
WednesdayPm: number;
|
|
887
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
888
|
-
*
|
|
889
|
-
* @type {NUMBER}
|
|
890
|
-
* @hidden This field is hidden in the UI
|
|
891
|
-
*/
|
|
892
|
-
ThursdayAm: number;
|
|
893
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
894
|
-
*
|
|
895
|
-
* @type {TEXT_LONG}
|
|
896
|
-
*/
|
|
897
|
-
Description: string;
|
|
898
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
899
|
-
*
|
|
900
|
-
* @type {DATE}
|
|
901
|
-
* @format DD/MM/YYYY
|
|
902
|
-
*/
|
|
903
|
-
AvailableFrom: string;
|
|
904
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
905
|
-
*
|
|
906
|
-
* @type {NUMBER}
|
|
907
|
-
*/
|
|
908
|
-
Priority: number;
|
|
909
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
910
|
-
*
|
|
911
|
-
* @type {LOOKUP}
|
|
912
|
-
* @hidden This field is hidden in the UI
|
|
913
|
-
*/
|
|
914
|
-
SupervisorId: string;
|
|
915
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
916
|
-
*
|
|
917
|
-
* @type {DATE}
|
|
918
|
-
* @format DD/MM/YYYY
|
|
919
|
-
* @default
|
|
920
|
-
*/
|
|
921
|
-
AvailableTo: string;
|
|
922
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
923
|
-
*
|
|
924
|
-
* @type {NUMBER}
|
|
925
|
-
*/
|
|
926
|
-
BookingDelay: number;
|
|
927
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
928
|
-
*
|
|
929
|
-
* @type {NUMBER}
|
|
930
|
-
*/
|
|
931
|
-
MaxAdvanceBooking: number;
|
|
932
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
933
|
-
*
|
|
934
|
-
* @type {LOOKUP}
|
|
935
|
-
* @hidden This field is hidden in the UI
|
|
936
|
-
*/
|
|
937
|
-
ManagerId: string;
|
|
938
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
939
|
-
*
|
|
940
|
-
* @type {ENUM}
|
|
941
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
942
|
-
*/
|
|
943
|
-
Region: ServiceAppointmentConfigRegion;
|
|
944
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
945
|
-
*
|
|
946
|
-
* @type {ENUM}
|
|
947
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
948
|
-
*/
|
|
949
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
950
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
951
|
-
*
|
|
952
|
-
* @type {ENUM}
|
|
953
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
954
|
-
*/
|
|
955
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
956
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
957
|
-
*
|
|
958
|
-
* @type {NUMBER}
|
|
959
|
-
* @hidden This field is hidden in the UI
|
|
960
|
-
*/
|
|
961
|
-
FridayAm: number;
|
|
962
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
963
|
-
*
|
|
964
|
-
* @type {DATE}
|
|
965
|
-
* @format DD/MM/YYYY
|
|
966
|
-
* @default
|
|
967
|
-
* @hidden This field is hidden in the UI
|
|
968
|
-
*/
|
|
969
|
-
Date: string;
|
|
970
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
971
|
-
*
|
|
972
|
-
* @type {TEXT}
|
|
973
|
-
*/
|
|
974
|
-
ExPolygonId: string;
|
|
975
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
976
|
-
*
|
|
977
|
-
* @type {NUMBER}
|
|
978
|
-
* @hidden This field is hidden in the UI
|
|
979
|
-
*/
|
|
980
|
-
Pm: number;
|
|
981
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
982
|
-
*
|
|
983
|
-
* @type {NUMBER}
|
|
984
|
-
* @hidden This field is hidden in the UI
|
|
985
|
-
*/
|
|
986
|
-
SundayPm: number;
|
|
987
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
988
|
-
*
|
|
989
|
-
* @type {NUMBER}
|
|
990
|
-
* @hidden This field is hidden in the UI
|
|
991
|
-
*/
|
|
992
|
-
TuesdayPm: number;
|
|
993
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
994
|
-
*
|
|
995
|
-
* @type {NUMBER}
|
|
996
|
-
* @hidden This field is hidden in the UI
|
|
997
|
-
*/
|
|
998
|
-
Am: number;
|
|
999
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
1000
|
-
*
|
|
1001
|
-
* @type {BOOLEAN}
|
|
1002
|
-
* @default true
|
|
1003
|
-
*/
|
|
1004
|
-
IsDefault: boolean;
|
|
1005
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
1006
|
-
*
|
|
1007
|
-
* @type {TEXT}
|
|
1008
|
-
* @hidden This field is hidden in the UI
|
|
1009
|
-
*/
|
|
1010
|
-
AddressTypes: string;
|
|
1011
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
1012
|
-
*
|
|
1013
|
-
* @type {LOOKUP}
|
|
1014
|
-
* @hidden This field is hidden in the UI
|
|
1015
|
-
*/
|
|
1016
|
-
RegionId: string;
|
|
1017
|
-
}
|
|
1018
|
-
/**
|
|
1019
|
-
* Properties for INSTALL_SERVICE ServiceAppointmentConfig records
|
|
1020
|
-
*
|
|
1021
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
1022
|
-
*/
|
|
1023
|
-
export interface InstallServiceServiceAppointmentConfigProperties {
|
|
1024
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1025
|
-
*
|
|
1026
|
-
* @type {NUMBER}
|
|
1027
|
-
* @hidden This field is hidden in the UI
|
|
1028
|
-
*/
|
|
1029
|
-
WednesdayAm: number;
|
|
1030
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1031
|
-
*
|
|
1032
|
-
* @type {NUMBER}
|
|
1033
|
-
* @hidden This field is hidden in the UI
|
|
1034
|
-
*/
|
|
1035
|
-
FridayPm: number;
|
|
1036
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1037
|
-
*
|
|
1038
|
-
* @type {NUMBER}
|
|
1039
|
-
* @hidden This field is hidden in the UI
|
|
1040
|
-
*/
|
|
1041
|
-
MondayAm: number;
|
|
1042
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1043
|
-
*
|
|
1044
|
-
* @type {NUMBER}
|
|
1045
|
-
* @hidden This field is hidden in the UI
|
|
1046
|
-
*/
|
|
1047
|
-
SaturdayPm: number;
|
|
1048
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1049
|
-
*
|
|
1050
|
-
* @type {NUMBER}
|
|
1051
|
-
* @hidden This field is hidden in the UI
|
|
1052
|
-
*/
|
|
1053
|
-
TuesdayAm: number;
|
|
1054
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
1055
|
-
*
|
|
1056
|
-
* @type {TEXT}
|
|
1057
|
-
*/
|
|
1058
|
-
Name: string;
|
|
1059
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1060
|
-
*
|
|
1061
|
-
* @type {NUMBER}
|
|
1062
|
-
* @hidden This field is hidden in the UI
|
|
1063
|
-
*/
|
|
1064
|
-
SaturdayAm: number;
|
|
1065
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1066
|
-
*
|
|
1067
|
-
* @type {NUMBER}
|
|
1068
|
-
* @hidden This field is hidden in the UI
|
|
1069
|
-
*/
|
|
1070
|
-
ThursdayPm: number;
|
|
1071
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1072
|
-
*
|
|
1073
|
-
* @type {NUMBER}
|
|
1074
|
-
* @hidden This field is hidden in the UI
|
|
1075
|
-
*/
|
|
1076
|
-
MondayPm: number;
|
|
1077
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1078
|
-
*
|
|
1079
|
-
* @type {NUMBER}
|
|
1080
|
-
* @hidden This field is hidden in the UI
|
|
1081
|
-
*/
|
|
1082
|
-
SundayAm: number;
|
|
1083
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1084
|
-
*
|
|
1085
|
-
* @type {NUMBER}
|
|
1086
|
-
* @hidden This field is hidden in the UI
|
|
1087
|
-
*/
|
|
1088
|
-
WednesdayPm: number;
|
|
1089
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1090
|
-
*
|
|
1091
|
-
* @type {NUMBER}
|
|
1092
|
-
* @hidden This field is hidden in the UI
|
|
1093
|
-
*/
|
|
1094
|
-
ThursdayAm: number;
|
|
1095
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
1096
|
-
*
|
|
1097
|
-
* @type {TEXT_LONG}
|
|
1098
|
-
*/
|
|
1099
|
-
Description: string;
|
|
1100
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
1101
|
-
*
|
|
1102
|
-
* @type {DATE}
|
|
1103
|
-
* @format DD/MM/YYYY
|
|
1104
|
-
*/
|
|
1105
|
-
AvailableFrom: string;
|
|
1106
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
1107
|
-
*
|
|
1108
|
-
* @type {NUMBER}
|
|
1109
|
-
*/
|
|
1110
|
-
Priority: number;
|
|
1111
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
1112
|
-
*
|
|
1113
|
-
* @type {LOOKUP}
|
|
1114
|
-
* @hidden This field is hidden in the UI
|
|
1115
|
-
*/
|
|
1116
|
-
SupervisorId: string;
|
|
1117
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
1118
|
-
*
|
|
1119
|
-
* @type {DATE}
|
|
1120
|
-
* @format DD/MM/YYYY
|
|
1121
|
-
* @default
|
|
1122
|
-
*/
|
|
1123
|
-
AvailableTo: string;
|
|
1124
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
1125
|
-
*
|
|
1126
|
-
* @type {NUMBER}
|
|
1127
|
-
*/
|
|
1128
|
-
BookingDelay: number;
|
|
1129
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
1130
|
-
*
|
|
1131
|
-
* @type {NUMBER}
|
|
1132
|
-
*/
|
|
1133
|
-
MaxAdvanceBooking: number;
|
|
1134
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
1135
|
-
*
|
|
1136
|
-
* @type {LOOKUP}
|
|
1137
|
-
* @hidden This field is hidden in the UI
|
|
1138
|
-
*/
|
|
1139
|
-
ManagerId: string;
|
|
1140
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
1141
|
-
*
|
|
1142
|
-
* @type {ENUM}
|
|
1143
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
1144
|
-
*/
|
|
1145
|
-
Region: ServiceAppointmentConfigRegion;
|
|
1146
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
1147
|
-
*
|
|
1148
|
-
* @type {ENUM}
|
|
1149
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
1150
|
-
*/
|
|
1151
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
1152
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
1153
|
-
*
|
|
1154
|
-
* @type {ENUM}
|
|
1155
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
1156
|
-
*/
|
|
1157
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
1158
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1159
|
-
*
|
|
1160
|
-
* @type {NUMBER}
|
|
1161
|
-
* @hidden This field is hidden in the UI
|
|
1162
|
-
*/
|
|
1163
|
-
FridayAm: number;
|
|
1164
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
1165
|
-
*
|
|
1166
|
-
* @type {DATE}
|
|
1167
|
-
* @format DD/MM/YYYY
|
|
1168
|
-
* @default
|
|
1169
|
-
* @hidden This field is hidden in the UI
|
|
1170
|
-
*/
|
|
1171
|
-
Date: string;
|
|
1172
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
1173
|
-
*
|
|
1174
|
-
* @type {TEXT}
|
|
1175
|
-
*/
|
|
1176
|
-
ExPolygonId: string;
|
|
1177
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
1178
|
-
*
|
|
1179
|
-
* @type {NUMBER}
|
|
1180
|
-
* @hidden This field is hidden in the UI
|
|
1181
|
-
*/
|
|
1182
|
-
Pm: number;
|
|
1183
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1184
|
-
*
|
|
1185
|
-
* @type {NUMBER}
|
|
1186
|
-
* @hidden This field is hidden in the UI
|
|
1187
|
-
*/
|
|
1188
|
-
SundayPm: number;
|
|
1189
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1190
|
-
*
|
|
1191
|
-
* @type {NUMBER}
|
|
1192
|
-
* @hidden This field is hidden in the UI
|
|
1193
|
-
*/
|
|
1194
|
-
TuesdayPm: number;
|
|
1195
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
1196
|
-
*
|
|
1197
|
-
* @type {NUMBER}
|
|
1198
|
-
* @hidden This field is hidden in the UI
|
|
1199
|
-
*/
|
|
1200
|
-
Am: number;
|
|
1201
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
1202
|
-
*
|
|
1203
|
-
* @type {BOOLEAN}
|
|
1204
|
-
* @default true
|
|
1205
|
-
*/
|
|
1206
|
-
IsDefault: boolean;
|
|
1207
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
1208
|
-
*
|
|
1209
|
-
* @type {TEXT}
|
|
1210
|
-
* @hidden This field is hidden in the UI
|
|
1211
|
-
*/
|
|
1212
|
-
AddressTypes: string;
|
|
1213
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
1214
|
-
*
|
|
1215
|
-
* @type {LOOKUP}
|
|
1216
|
-
* @hidden This field is hidden in the UI
|
|
1217
|
-
*/
|
|
1218
|
-
RegionId: string;
|
|
1219
|
-
}
|
|
1220
|
-
/**
|
|
1221
|
-
* Properties for NETWORK_ADJUSTMENT ServiceAppointmentConfig records
|
|
1222
|
-
*
|
|
1223
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
1224
|
-
*/
|
|
1225
|
-
export interface NetworkAdjustmentServiceAppointmentConfigProperties {
|
|
1226
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1227
|
-
*
|
|
1228
|
-
* @type {NUMBER}
|
|
1229
|
-
* @hidden This field is hidden in the UI
|
|
1230
|
-
*/
|
|
1231
|
-
WednesdayAm: number;
|
|
1232
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1233
|
-
*
|
|
1234
|
-
* @type {NUMBER}
|
|
1235
|
-
* @hidden This field is hidden in the UI
|
|
1236
|
-
*/
|
|
1237
|
-
FridayPm: number;
|
|
1238
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1239
|
-
*
|
|
1240
|
-
* @type {NUMBER}
|
|
1241
|
-
* @hidden This field is hidden in the UI
|
|
1242
|
-
*/
|
|
1243
|
-
MondayAm: number;
|
|
1244
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1245
|
-
*
|
|
1246
|
-
* @type {NUMBER}
|
|
1247
|
-
* @hidden This field is hidden in the UI
|
|
1248
|
-
*/
|
|
1249
|
-
SaturdayPm: number;
|
|
1250
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1251
|
-
*
|
|
1252
|
-
* @type {NUMBER}
|
|
1253
|
-
* @hidden This field is hidden in the UI
|
|
1254
|
-
*/
|
|
1255
|
-
TuesdayAm: number;
|
|
1256
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
1257
|
-
*
|
|
1258
|
-
* @type {TEXT}
|
|
1259
|
-
*/
|
|
1260
|
-
Name: string;
|
|
1261
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1262
|
-
*
|
|
1263
|
-
* @type {NUMBER}
|
|
1264
|
-
* @hidden This field is hidden in the UI
|
|
1265
|
-
*/
|
|
1266
|
-
SaturdayAm: number;
|
|
1267
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1268
|
-
*
|
|
1269
|
-
* @type {NUMBER}
|
|
1270
|
-
* @hidden This field is hidden in the UI
|
|
1271
|
-
*/
|
|
1272
|
-
ThursdayPm: number;
|
|
1273
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1274
|
-
*
|
|
1275
|
-
* @type {NUMBER}
|
|
1276
|
-
* @hidden This field is hidden in the UI
|
|
1277
|
-
*/
|
|
1278
|
-
MondayPm: number;
|
|
1279
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1280
|
-
*
|
|
1281
|
-
* @type {NUMBER}
|
|
1282
|
-
* @hidden This field is hidden in the UI
|
|
1283
|
-
*/
|
|
1284
|
-
SundayAm: number;
|
|
1285
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1286
|
-
*
|
|
1287
|
-
* @type {NUMBER}
|
|
1288
|
-
* @hidden This field is hidden in the UI
|
|
1289
|
-
*/
|
|
1290
|
-
WednesdayPm: number;
|
|
1291
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1292
|
-
*
|
|
1293
|
-
* @type {NUMBER}
|
|
1294
|
-
* @hidden This field is hidden in the UI
|
|
1295
|
-
*/
|
|
1296
|
-
ThursdayAm: number;
|
|
1297
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
1298
|
-
*
|
|
1299
|
-
* @type {TEXT_LONG}
|
|
1300
|
-
*/
|
|
1301
|
-
Description: string;
|
|
1302
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
1303
|
-
*
|
|
1304
|
-
* @type {DATE}
|
|
1305
|
-
* @format DD/MM/YYYY
|
|
1306
|
-
*/
|
|
1307
|
-
AvailableFrom: string;
|
|
1308
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
1309
|
-
*
|
|
1310
|
-
* @type {NUMBER}
|
|
1311
|
-
*/
|
|
1312
|
-
Priority: number;
|
|
1313
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
1314
|
-
*
|
|
1315
|
-
* @type {LOOKUP}
|
|
1316
|
-
* @hidden This field is hidden in the UI
|
|
1317
|
-
*/
|
|
1318
|
-
SupervisorId: string;
|
|
1319
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
1320
|
-
*
|
|
1321
|
-
* @type {DATE}
|
|
1322
|
-
* @format DD/MM/YYYY
|
|
1323
|
-
* @default
|
|
1324
|
-
*/
|
|
1325
|
-
AvailableTo: string;
|
|
1326
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
1327
|
-
*
|
|
1328
|
-
* @type {NUMBER}
|
|
1329
|
-
*/
|
|
1330
|
-
BookingDelay: number;
|
|
1331
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
1332
|
-
*
|
|
1333
|
-
* @type {NUMBER}
|
|
1334
|
-
*/
|
|
1335
|
-
MaxAdvanceBooking: number;
|
|
1336
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
1337
|
-
*
|
|
1338
|
-
* @type {LOOKUP}
|
|
1339
|
-
* @hidden This field is hidden in the UI
|
|
1340
|
-
*/
|
|
1341
|
-
ManagerId: string;
|
|
1342
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
1343
|
-
*
|
|
1344
|
-
* @type {ENUM}
|
|
1345
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
1346
|
-
*/
|
|
1347
|
-
Region: ServiceAppointmentConfigRegion;
|
|
1348
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
1349
|
-
*
|
|
1350
|
-
* @type {ENUM}
|
|
1351
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
1352
|
-
*/
|
|
1353
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
1354
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
1355
|
-
*
|
|
1356
|
-
* @type {ENUM}
|
|
1357
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
1358
|
-
*/
|
|
1359
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
1360
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1361
|
-
*
|
|
1362
|
-
* @type {NUMBER}
|
|
1363
|
-
* @hidden This field is hidden in the UI
|
|
1364
|
-
*/
|
|
1365
|
-
FridayAm: number;
|
|
1366
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
1367
|
-
*
|
|
1368
|
-
* @type {DATE}
|
|
1369
|
-
* @format DD/MM/YYYY
|
|
1370
|
-
* @default
|
|
1371
|
-
* @hidden This field is hidden in the UI
|
|
1372
|
-
*/
|
|
1373
|
-
Date: string;
|
|
1374
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
1375
|
-
*
|
|
1376
|
-
* @type {TEXT}
|
|
1377
|
-
*/
|
|
1378
|
-
ExPolygonId: string;
|
|
1379
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
1380
|
-
*
|
|
1381
|
-
* @type {NUMBER}
|
|
1382
|
-
* @hidden This field is hidden in the UI
|
|
1383
|
-
*/
|
|
1384
|
-
Pm: number;
|
|
1385
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1386
|
-
*
|
|
1387
|
-
* @type {NUMBER}
|
|
1388
|
-
* @hidden This field is hidden in the UI
|
|
1389
|
-
*/
|
|
1390
|
-
SundayPm: number;
|
|
1391
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1392
|
-
*
|
|
1393
|
-
* @type {NUMBER}
|
|
1394
|
-
* @hidden This field is hidden in the UI
|
|
1395
|
-
*/
|
|
1396
|
-
TuesdayPm: number;
|
|
1397
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
1398
|
-
*
|
|
1399
|
-
* @type {NUMBER}
|
|
1400
|
-
* @hidden This field is hidden in the UI
|
|
1401
|
-
*/
|
|
1402
|
-
Am: number;
|
|
1403
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
1404
|
-
*
|
|
1405
|
-
* @type {BOOLEAN}
|
|
1406
|
-
* @default true
|
|
1407
|
-
*/
|
|
1408
|
-
IsDefault: boolean;
|
|
1409
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
1410
|
-
*
|
|
1411
|
-
* @type {TEXT}
|
|
1412
|
-
* @hidden This field is hidden in the UI
|
|
1413
|
-
*/
|
|
1414
|
-
AddressTypes: string;
|
|
1415
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
1416
|
-
*
|
|
1417
|
-
* @type {LOOKUP}
|
|
1418
|
-
* @hidden This field is hidden in the UI
|
|
1419
|
-
*/
|
|
1420
|
-
RegionId: string;
|
|
1421
|
-
}
|
|
1422
|
-
/**
|
|
1423
|
-
* Properties for PLANNING ServiceAppointmentConfig records
|
|
1424
|
-
*
|
|
1425
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
1426
|
-
*/
|
|
1427
|
-
export interface PlanningServiceAppointmentConfigProperties {
|
|
1428
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1429
|
-
*
|
|
1430
|
-
* @type {NUMBER}
|
|
1431
|
-
* @hidden This field is hidden in the UI
|
|
1432
|
-
*/
|
|
1433
|
-
WednesdayAm: number;
|
|
1434
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1435
|
-
*
|
|
1436
|
-
* @type {NUMBER}
|
|
1437
|
-
* @hidden This field is hidden in the UI
|
|
1438
|
-
*/
|
|
1439
|
-
FridayPm: number;
|
|
1440
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1441
|
-
*
|
|
1442
|
-
* @type {NUMBER}
|
|
1443
|
-
* @hidden This field is hidden in the UI
|
|
1444
|
-
*/
|
|
1445
|
-
MondayAm: number;
|
|
1446
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1447
|
-
*
|
|
1448
|
-
* @type {NUMBER}
|
|
1449
|
-
* @hidden This field is hidden in the UI
|
|
1450
|
-
*/
|
|
1451
|
-
SaturdayPm: number;
|
|
1452
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1453
|
-
*
|
|
1454
|
-
* @type {NUMBER}
|
|
1455
|
-
* @hidden This field is hidden in the UI
|
|
1456
|
-
*/
|
|
1457
|
-
TuesdayAm: number;
|
|
1458
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
1459
|
-
*
|
|
1460
|
-
* @type {TEXT}
|
|
1461
|
-
*/
|
|
1462
|
-
Name: string;
|
|
1463
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1464
|
-
*
|
|
1465
|
-
* @type {NUMBER}
|
|
1466
|
-
* @hidden This field is hidden in the UI
|
|
1467
|
-
*/
|
|
1468
|
-
SaturdayAm: number;
|
|
1469
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1470
|
-
*
|
|
1471
|
-
* @type {NUMBER}
|
|
1472
|
-
* @hidden This field is hidden in the UI
|
|
1473
|
-
*/
|
|
1474
|
-
ThursdayPm: number;
|
|
1475
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1476
|
-
*
|
|
1477
|
-
* @type {NUMBER}
|
|
1478
|
-
* @hidden This field is hidden in the UI
|
|
1479
|
-
*/
|
|
1480
|
-
MondayPm: number;
|
|
1481
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1482
|
-
*
|
|
1483
|
-
* @type {NUMBER}
|
|
1484
|
-
* @hidden This field is hidden in the UI
|
|
1485
|
-
*/
|
|
1486
|
-
SundayAm: number;
|
|
1487
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1488
|
-
*
|
|
1489
|
-
* @type {NUMBER}
|
|
1490
|
-
* @hidden This field is hidden in the UI
|
|
1491
|
-
*/
|
|
1492
|
-
WednesdayPm: number;
|
|
1493
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1494
|
-
*
|
|
1495
|
-
* @type {NUMBER}
|
|
1496
|
-
* @hidden This field is hidden in the UI
|
|
1497
|
-
*/
|
|
1498
|
-
ThursdayAm: number;
|
|
1499
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
1500
|
-
*
|
|
1501
|
-
* @type {TEXT_LONG}
|
|
1502
|
-
*/
|
|
1503
|
-
Description: string;
|
|
1504
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
1505
|
-
*
|
|
1506
|
-
* @type {DATE}
|
|
1507
|
-
* @format DD/MM/YYYY
|
|
1508
|
-
*/
|
|
1509
|
-
AvailableFrom: string;
|
|
1510
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
1511
|
-
*
|
|
1512
|
-
* @type {NUMBER}
|
|
1513
|
-
*/
|
|
1514
|
-
Priority: number;
|
|
1515
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
1516
|
-
*
|
|
1517
|
-
* @type {LOOKUP}
|
|
1518
|
-
* @hidden This field is hidden in the UI
|
|
1519
|
-
*/
|
|
1520
|
-
SupervisorId: string;
|
|
1521
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
1522
|
-
*
|
|
1523
|
-
* @type {DATE}
|
|
1524
|
-
* @format DD/MM/YYYY
|
|
1525
|
-
* @default
|
|
1526
|
-
*/
|
|
1527
|
-
AvailableTo: string;
|
|
1528
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
1529
|
-
*
|
|
1530
|
-
* @type {NUMBER}
|
|
1531
|
-
*/
|
|
1532
|
-
BookingDelay: number;
|
|
1533
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
1534
|
-
*
|
|
1535
|
-
* @type {NUMBER}
|
|
1536
|
-
*/
|
|
1537
|
-
MaxAdvanceBooking: number;
|
|
1538
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
1539
|
-
*
|
|
1540
|
-
* @type {LOOKUP}
|
|
1541
|
-
* @hidden This field is hidden in the UI
|
|
1542
|
-
*/
|
|
1543
|
-
ManagerId: string;
|
|
1544
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
1545
|
-
*
|
|
1546
|
-
* @type {ENUM}
|
|
1547
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
1548
|
-
*/
|
|
1549
|
-
Region: ServiceAppointmentConfigRegion;
|
|
1550
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
1551
|
-
*
|
|
1552
|
-
* @type {ENUM}
|
|
1553
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
1554
|
-
*/
|
|
1555
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
1556
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
1557
|
-
*
|
|
1558
|
-
* @type {ENUM}
|
|
1559
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
1560
|
-
*/
|
|
1561
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
1562
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1563
|
-
*
|
|
1564
|
-
* @type {NUMBER}
|
|
1565
|
-
* @hidden This field is hidden in the UI
|
|
1566
|
-
*/
|
|
1567
|
-
FridayAm: number;
|
|
1568
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
1569
|
-
*
|
|
1570
|
-
* @type {DATE}
|
|
1571
|
-
* @format DD/MM/YYYY
|
|
1572
|
-
* @default
|
|
1573
|
-
* @hidden This field is hidden in the UI
|
|
1574
|
-
*/
|
|
1575
|
-
Date: string;
|
|
1576
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
1577
|
-
*
|
|
1578
|
-
* @type {TEXT}
|
|
1579
|
-
*/
|
|
1580
|
-
ExPolygonId: string;
|
|
1581
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
1582
|
-
*
|
|
1583
|
-
* @type {NUMBER}
|
|
1584
|
-
* @hidden This field is hidden in the UI
|
|
1585
|
-
*/
|
|
1586
|
-
Pm: number;
|
|
1587
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1588
|
-
*
|
|
1589
|
-
* @type {NUMBER}
|
|
1590
|
-
* @hidden This field is hidden in the UI
|
|
1591
|
-
*/
|
|
1592
|
-
SundayPm: number;
|
|
1593
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1594
|
-
*
|
|
1595
|
-
* @type {NUMBER}
|
|
1596
|
-
* @hidden This field is hidden in the UI
|
|
1597
|
-
*/
|
|
1598
|
-
TuesdayPm: number;
|
|
1599
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
1600
|
-
*
|
|
1601
|
-
* @type {NUMBER}
|
|
1602
|
-
* @hidden This field is hidden in the UI
|
|
1603
|
-
*/
|
|
1604
|
-
Am: number;
|
|
1605
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
1606
|
-
*
|
|
1607
|
-
* @type {BOOLEAN}
|
|
1608
|
-
* @default true
|
|
1609
|
-
*/
|
|
1610
|
-
IsDefault: boolean;
|
|
1611
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
1612
|
-
*
|
|
1613
|
-
* @type {TEXT}
|
|
1614
|
-
* @hidden This field is hidden in the UI
|
|
1615
|
-
*/
|
|
1616
|
-
AddressTypes: string;
|
|
1617
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
1618
|
-
*
|
|
1619
|
-
* @type {LOOKUP}
|
|
1620
|
-
* @hidden This field is hidden in the UI
|
|
1621
|
-
*/
|
|
1622
|
-
RegionId: string;
|
|
1623
|
-
}
|
|
1624
|
-
/**
|
|
1625
|
-
* Properties for PRE_PULL ServiceAppointmentConfig records
|
|
1626
|
-
*
|
|
1627
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
1628
|
-
*/
|
|
1629
|
-
export interface PrePullServiceAppointmentConfigProperties {
|
|
1630
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1631
|
-
*
|
|
1632
|
-
* @type {NUMBER}
|
|
1633
|
-
* @hidden This field is hidden in the UI
|
|
1634
|
-
*/
|
|
1635
|
-
WednesdayAm: number;
|
|
1636
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1637
|
-
*
|
|
1638
|
-
* @type {NUMBER}
|
|
1639
|
-
* @hidden This field is hidden in the UI
|
|
1640
|
-
*/
|
|
1641
|
-
FridayPm: number;
|
|
1642
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1643
|
-
*
|
|
1644
|
-
* @type {NUMBER}
|
|
1645
|
-
* @hidden This field is hidden in the UI
|
|
1646
|
-
*/
|
|
1647
|
-
MondayAm: number;
|
|
1648
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1649
|
-
*
|
|
1650
|
-
* @type {NUMBER}
|
|
1651
|
-
* @hidden This field is hidden in the UI
|
|
1652
|
-
*/
|
|
1653
|
-
SaturdayPm: number;
|
|
1654
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1655
|
-
*
|
|
1656
|
-
* @type {NUMBER}
|
|
1657
|
-
* @hidden This field is hidden in the UI
|
|
1658
|
-
*/
|
|
1659
|
-
TuesdayAm: number;
|
|
1660
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
1661
|
-
*
|
|
1662
|
-
* @type {TEXT}
|
|
1663
|
-
*/
|
|
1664
|
-
Name: string;
|
|
1665
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1666
|
-
*
|
|
1667
|
-
* @type {NUMBER}
|
|
1668
|
-
* @hidden This field is hidden in the UI
|
|
1669
|
-
*/
|
|
1670
|
-
SaturdayAm: number;
|
|
1671
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1672
|
-
*
|
|
1673
|
-
* @type {NUMBER}
|
|
1674
|
-
* @hidden This field is hidden in the UI
|
|
1675
|
-
*/
|
|
1676
|
-
ThursdayPm: number;
|
|
1677
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1678
|
-
*
|
|
1679
|
-
* @type {NUMBER}
|
|
1680
|
-
* @hidden This field is hidden in the UI
|
|
1681
|
-
*/
|
|
1682
|
-
MondayPm: number;
|
|
1683
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1684
|
-
*
|
|
1685
|
-
* @type {NUMBER}
|
|
1686
|
-
* @hidden This field is hidden in the UI
|
|
1687
|
-
*/
|
|
1688
|
-
SundayAm: number;
|
|
1689
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1690
|
-
*
|
|
1691
|
-
* @type {NUMBER}
|
|
1692
|
-
* @hidden This field is hidden in the UI
|
|
1693
|
-
*/
|
|
1694
|
-
WednesdayPm: number;
|
|
1695
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1696
|
-
*
|
|
1697
|
-
* @type {NUMBER}
|
|
1698
|
-
* @hidden This field is hidden in the UI
|
|
1699
|
-
*/
|
|
1700
|
-
ThursdayAm: number;
|
|
1701
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
1702
|
-
*
|
|
1703
|
-
* @type {TEXT_LONG}
|
|
1704
|
-
*/
|
|
1705
|
-
Description: string;
|
|
1706
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
1707
|
-
*
|
|
1708
|
-
* @type {DATE}
|
|
1709
|
-
* @format DD/MM/YYYY
|
|
1710
|
-
*/
|
|
1711
|
-
AvailableFrom: string;
|
|
1712
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
1713
|
-
*
|
|
1714
|
-
* @type {NUMBER}
|
|
1715
|
-
*/
|
|
1716
|
-
Priority: number;
|
|
1717
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
1718
|
-
*
|
|
1719
|
-
* @type {LOOKUP}
|
|
1720
|
-
* @hidden This field is hidden in the UI
|
|
1721
|
-
*/
|
|
1722
|
-
SupervisorId: string;
|
|
1723
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
1724
|
-
*
|
|
1725
|
-
* @type {DATE}
|
|
1726
|
-
* @format DD/MM/YYYY
|
|
1727
|
-
* @default
|
|
1728
|
-
*/
|
|
1729
|
-
AvailableTo: string;
|
|
1730
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
1731
|
-
*
|
|
1732
|
-
* @type {NUMBER}
|
|
1733
|
-
*/
|
|
1734
|
-
BookingDelay: number;
|
|
1735
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
1736
|
-
*
|
|
1737
|
-
* @type {NUMBER}
|
|
1738
|
-
*/
|
|
1739
|
-
MaxAdvanceBooking: number;
|
|
1740
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
1741
|
-
*
|
|
1742
|
-
* @type {LOOKUP}
|
|
1743
|
-
* @hidden This field is hidden in the UI
|
|
1744
|
-
*/
|
|
1745
|
-
ManagerId: string;
|
|
1746
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
1747
|
-
*
|
|
1748
|
-
* @type {ENUM}
|
|
1749
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
1750
|
-
*/
|
|
1751
|
-
Region: ServiceAppointmentConfigRegion;
|
|
1752
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
1753
|
-
*
|
|
1754
|
-
* @type {ENUM}
|
|
1755
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
1756
|
-
*/
|
|
1757
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
1758
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
1759
|
-
*
|
|
1760
|
-
* @type {ENUM}
|
|
1761
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
1762
|
-
*/
|
|
1763
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
1764
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1765
|
-
*
|
|
1766
|
-
* @type {NUMBER}
|
|
1767
|
-
* @hidden This field is hidden in the UI
|
|
1768
|
-
*/
|
|
1769
|
-
FridayAm: number;
|
|
1770
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
1771
|
-
*
|
|
1772
|
-
* @type {DATE}
|
|
1773
|
-
* @format DD/MM/YYYY
|
|
1774
|
-
* @default
|
|
1775
|
-
* @hidden This field is hidden in the UI
|
|
1776
|
-
*/
|
|
1777
|
-
Date: string;
|
|
1778
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
1779
|
-
*
|
|
1780
|
-
* @type {TEXT}
|
|
1781
|
-
*/
|
|
1782
|
-
ExPolygonId: string;
|
|
1783
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
1784
|
-
*
|
|
1785
|
-
* @type {NUMBER}
|
|
1786
|
-
* @hidden This field is hidden in the UI
|
|
1787
|
-
*/
|
|
1788
|
-
Pm: number;
|
|
1789
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1790
|
-
*
|
|
1791
|
-
* @type {NUMBER}
|
|
1792
|
-
* @hidden This field is hidden in the UI
|
|
1793
|
-
*/
|
|
1794
|
-
SundayPm: number;
|
|
1795
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1796
|
-
*
|
|
1797
|
-
* @type {NUMBER}
|
|
1798
|
-
* @hidden This field is hidden in the UI
|
|
1799
|
-
*/
|
|
1800
|
-
TuesdayPm: number;
|
|
1801
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
1802
|
-
*
|
|
1803
|
-
* @type {NUMBER}
|
|
1804
|
-
* @hidden This field is hidden in the UI
|
|
1805
|
-
*/
|
|
1806
|
-
Am: number;
|
|
1807
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
1808
|
-
*
|
|
1809
|
-
* @type {BOOLEAN}
|
|
1810
|
-
* @default true
|
|
1811
|
-
*/
|
|
1812
|
-
IsDefault: boolean;
|
|
1813
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
1814
|
-
*
|
|
1815
|
-
* @type {TEXT}
|
|
1816
|
-
* @hidden This field is hidden in the UI
|
|
1817
|
-
*/
|
|
1818
|
-
AddressTypes: string;
|
|
1819
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
1820
|
-
*
|
|
1821
|
-
* @type {LOOKUP}
|
|
1822
|
-
* @hidden This field is hidden in the UI
|
|
1823
|
-
*/
|
|
1824
|
-
RegionId: string;
|
|
1825
|
-
}
|
|
1826
|
-
/**
|
|
1827
|
-
* Properties for REMEDIATION ServiceAppointmentConfig records
|
|
1828
|
-
*
|
|
1829
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
1830
|
-
*/
|
|
1831
|
-
export interface RemediationServiceAppointmentConfigProperties {
|
|
1832
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1833
|
-
*
|
|
1834
|
-
* @type {NUMBER}
|
|
1835
|
-
* @hidden This field is hidden in the UI
|
|
1836
|
-
*/
|
|
1837
|
-
WednesdayAm: number;
|
|
1838
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1839
|
-
*
|
|
1840
|
-
* @type {NUMBER}
|
|
1841
|
-
* @hidden This field is hidden in the UI
|
|
1842
|
-
*/
|
|
1843
|
-
FridayPm: number;
|
|
1844
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1845
|
-
*
|
|
1846
|
-
* @type {NUMBER}
|
|
1847
|
-
* @hidden This field is hidden in the UI
|
|
1848
|
-
*/
|
|
1849
|
-
MondayAm: number;
|
|
1850
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1851
|
-
*
|
|
1852
|
-
* @type {NUMBER}
|
|
1853
|
-
* @hidden This field is hidden in the UI
|
|
1854
|
-
*/
|
|
1855
|
-
SaturdayPm: number;
|
|
1856
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1857
|
-
*
|
|
1858
|
-
* @type {NUMBER}
|
|
1859
|
-
* @hidden This field is hidden in the UI
|
|
1860
|
-
*/
|
|
1861
|
-
TuesdayAm: number;
|
|
1862
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
1863
|
-
*
|
|
1864
|
-
* @type {TEXT}
|
|
1865
|
-
*/
|
|
1866
|
-
Name: string;
|
|
1867
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1868
|
-
*
|
|
1869
|
-
* @type {NUMBER}
|
|
1870
|
-
* @hidden This field is hidden in the UI
|
|
1871
|
-
*/
|
|
1872
|
-
SaturdayAm: number;
|
|
1873
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1874
|
-
*
|
|
1875
|
-
* @type {NUMBER}
|
|
1876
|
-
* @hidden This field is hidden in the UI
|
|
1877
|
-
*/
|
|
1878
|
-
ThursdayPm: number;
|
|
1879
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1880
|
-
*
|
|
1881
|
-
* @type {NUMBER}
|
|
1882
|
-
* @hidden This field is hidden in the UI
|
|
1883
|
-
*/
|
|
1884
|
-
MondayPm: number;
|
|
1885
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1886
|
-
*
|
|
1887
|
-
* @type {NUMBER}
|
|
1888
|
-
* @hidden This field is hidden in the UI
|
|
1889
|
-
*/
|
|
1890
|
-
SundayAm: number;
|
|
1891
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1892
|
-
*
|
|
1893
|
-
* @type {NUMBER}
|
|
1894
|
-
* @hidden This field is hidden in the UI
|
|
1895
|
-
*/
|
|
1896
|
-
WednesdayPm: number;
|
|
1897
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1898
|
-
*
|
|
1899
|
-
* @type {NUMBER}
|
|
1900
|
-
* @hidden This field is hidden in the UI
|
|
1901
|
-
*/
|
|
1902
|
-
ThursdayAm: number;
|
|
1903
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
1904
|
-
*
|
|
1905
|
-
* @type {TEXT_LONG}
|
|
1906
|
-
*/
|
|
1907
|
-
Description: string;
|
|
1908
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
1909
|
-
*
|
|
1910
|
-
* @type {DATE}
|
|
1911
|
-
* @format DD/MM/YYYY
|
|
1912
|
-
*/
|
|
1913
|
-
AvailableFrom: string;
|
|
1914
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
1915
|
-
*
|
|
1916
|
-
* @type {NUMBER}
|
|
1917
|
-
*/
|
|
1918
|
-
Priority: number;
|
|
1919
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
1920
|
-
*
|
|
1921
|
-
* @type {LOOKUP}
|
|
1922
|
-
* @hidden This field is hidden in the UI
|
|
1923
|
-
*/
|
|
1924
|
-
SupervisorId: string;
|
|
1925
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
1926
|
-
*
|
|
1927
|
-
* @type {DATE}
|
|
1928
|
-
* @format DD/MM/YYYY
|
|
1929
|
-
* @default
|
|
1930
|
-
*/
|
|
1931
|
-
AvailableTo: string;
|
|
1932
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
1933
|
-
*
|
|
1934
|
-
* @type {NUMBER}
|
|
1935
|
-
*/
|
|
1936
|
-
BookingDelay: number;
|
|
1937
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
1938
|
-
*
|
|
1939
|
-
* @type {NUMBER}
|
|
1940
|
-
*/
|
|
1941
|
-
MaxAdvanceBooking: number;
|
|
1942
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
1943
|
-
*
|
|
1944
|
-
* @type {LOOKUP}
|
|
1945
|
-
* @hidden This field is hidden in the UI
|
|
1946
|
-
*/
|
|
1947
|
-
ManagerId: string;
|
|
1948
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
1949
|
-
*
|
|
1950
|
-
* @type {ENUM}
|
|
1951
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
1952
|
-
*/
|
|
1953
|
-
Region: ServiceAppointmentConfigRegion;
|
|
1954
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
1955
|
-
*
|
|
1956
|
-
* @type {ENUM}
|
|
1957
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
1958
|
-
*/
|
|
1959
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
1960
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
1961
|
-
*
|
|
1962
|
-
* @type {ENUM}
|
|
1963
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
1964
|
-
*/
|
|
1965
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
1966
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1967
|
-
*
|
|
1968
|
-
* @type {NUMBER}
|
|
1969
|
-
* @hidden This field is hidden in the UI
|
|
1970
|
-
*/
|
|
1971
|
-
FridayAm: number;
|
|
1972
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
1973
|
-
*
|
|
1974
|
-
* @type {DATE}
|
|
1975
|
-
* @format DD/MM/YYYY
|
|
1976
|
-
* @default
|
|
1977
|
-
* @hidden This field is hidden in the UI
|
|
1978
|
-
*/
|
|
1979
|
-
Date: string;
|
|
1980
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
1981
|
-
*
|
|
1982
|
-
* @type {TEXT}
|
|
1983
|
-
*/
|
|
1984
|
-
ExPolygonId: string;
|
|
1985
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
1986
|
-
*
|
|
1987
|
-
* @type {NUMBER}
|
|
1988
|
-
* @hidden This field is hidden in the UI
|
|
1989
|
-
*/
|
|
1990
|
-
Pm: number;
|
|
1991
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1992
|
-
*
|
|
1993
|
-
* @type {NUMBER}
|
|
1994
|
-
* @hidden This field is hidden in the UI
|
|
1995
|
-
*/
|
|
1996
|
-
SundayPm: number;
|
|
1997
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
1998
|
-
*
|
|
1999
|
-
* @type {NUMBER}
|
|
2000
|
-
* @hidden This field is hidden in the UI
|
|
2001
|
-
*/
|
|
2002
|
-
TuesdayPm: number;
|
|
2003
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
2004
|
-
*
|
|
2005
|
-
* @type {NUMBER}
|
|
2006
|
-
* @hidden This field is hidden in the UI
|
|
2007
|
-
*/
|
|
2008
|
-
Am: number;
|
|
2009
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
2010
|
-
*
|
|
2011
|
-
* @type {BOOLEAN}
|
|
2012
|
-
* @default true
|
|
2013
|
-
*/
|
|
2014
|
-
IsDefault: boolean;
|
|
2015
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
2016
|
-
*
|
|
2017
|
-
* @type {TEXT}
|
|
2018
|
-
* @hidden This field is hidden in the UI
|
|
2019
|
-
*/
|
|
2020
|
-
AddressTypes: string;
|
|
2021
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
2022
|
-
*
|
|
2023
|
-
* @type {LOOKUP}
|
|
2024
|
-
* @hidden This field is hidden in the UI
|
|
2025
|
-
*/
|
|
2026
|
-
RegionId: string;
|
|
2027
|
-
}
|
|
2028
|
-
/**
|
|
2029
|
-
* Properties for SERVICE ServiceAppointmentConfig records
|
|
2030
|
-
*
|
|
2031
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
2032
|
-
*/
|
|
2033
|
-
export interface ServiceServiceAppointmentConfigProperties {
|
|
2034
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2035
|
-
*
|
|
2036
|
-
* @type {NUMBER}
|
|
2037
|
-
* @hidden This field is hidden in the UI
|
|
2038
|
-
*/
|
|
2039
|
-
WednesdayAm: number;
|
|
2040
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2041
|
-
*
|
|
2042
|
-
* @type {NUMBER}
|
|
2043
|
-
* @hidden This field is hidden in the UI
|
|
2044
|
-
*/
|
|
2045
|
-
FridayPm: number;
|
|
2046
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2047
|
-
*
|
|
2048
|
-
* @type {NUMBER}
|
|
2049
|
-
* @hidden This field is hidden in the UI
|
|
2050
|
-
*/
|
|
2051
|
-
MondayAm: number;
|
|
2052
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2053
|
-
*
|
|
2054
|
-
* @type {NUMBER}
|
|
2055
|
-
* @hidden This field is hidden in the UI
|
|
2056
|
-
*/
|
|
2057
|
-
SaturdayPm: number;
|
|
2058
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2059
|
-
*
|
|
2060
|
-
* @type {NUMBER}
|
|
2061
|
-
* @hidden This field is hidden in the UI
|
|
2062
|
-
*/
|
|
2063
|
-
TuesdayAm: number;
|
|
2064
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
2065
|
-
*
|
|
2066
|
-
* @type {TEXT}
|
|
2067
|
-
*/
|
|
2068
|
-
Name: string;
|
|
2069
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2070
|
-
*
|
|
2071
|
-
* @type {NUMBER}
|
|
2072
|
-
* @hidden This field is hidden in the UI
|
|
2073
|
-
*/
|
|
2074
|
-
SaturdayAm: number;
|
|
2075
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2076
|
-
*
|
|
2077
|
-
* @type {NUMBER}
|
|
2078
|
-
* @hidden This field is hidden in the UI
|
|
2079
|
-
*/
|
|
2080
|
-
ThursdayPm: number;
|
|
2081
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2082
|
-
*
|
|
2083
|
-
* @type {NUMBER}
|
|
2084
|
-
* @hidden This field is hidden in the UI
|
|
2085
|
-
*/
|
|
2086
|
-
MondayPm: number;
|
|
2087
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2088
|
-
*
|
|
2089
|
-
* @type {NUMBER}
|
|
2090
|
-
* @hidden This field is hidden in the UI
|
|
2091
|
-
*/
|
|
2092
|
-
SundayAm: number;
|
|
2093
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2094
|
-
*
|
|
2095
|
-
* @type {NUMBER}
|
|
2096
|
-
* @hidden This field is hidden in the UI
|
|
2097
|
-
*/
|
|
2098
|
-
WednesdayPm: number;
|
|
2099
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2100
|
-
*
|
|
2101
|
-
* @type {NUMBER}
|
|
2102
|
-
* @hidden This field is hidden in the UI
|
|
2103
|
-
*/
|
|
2104
|
-
ThursdayAm: number;
|
|
2105
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
2106
|
-
*
|
|
2107
|
-
* @type {TEXT_LONG}
|
|
2108
|
-
*/
|
|
2109
|
-
Description: string;
|
|
2110
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
2111
|
-
*
|
|
2112
|
-
* @type {DATE}
|
|
2113
|
-
* @format DD/MM/YYYY
|
|
2114
|
-
*/
|
|
2115
|
-
AvailableFrom: string;
|
|
2116
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
2117
|
-
*
|
|
2118
|
-
* @type {NUMBER}
|
|
2119
|
-
*/
|
|
2120
|
-
Priority: number;
|
|
2121
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
2122
|
-
*
|
|
2123
|
-
* @type {LOOKUP}
|
|
2124
|
-
* @hidden This field is hidden in the UI
|
|
2125
|
-
*/
|
|
2126
|
-
SupervisorId: string;
|
|
2127
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
2128
|
-
*
|
|
2129
|
-
* @type {DATE}
|
|
2130
|
-
* @format DD/MM/YYYY
|
|
2131
|
-
* @default
|
|
2132
|
-
*/
|
|
2133
|
-
AvailableTo: string;
|
|
2134
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
2135
|
-
*
|
|
2136
|
-
* @type {NUMBER}
|
|
2137
|
-
*/
|
|
2138
|
-
BookingDelay: number;
|
|
2139
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
2140
|
-
*
|
|
2141
|
-
* @type {NUMBER}
|
|
2142
|
-
*/
|
|
2143
|
-
MaxAdvanceBooking: number;
|
|
2144
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
2145
|
-
*
|
|
2146
|
-
* @type {LOOKUP}
|
|
2147
|
-
* @hidden This field is hidden in the UI
|
|
2148
|
-
*/
|
|
2149
|
-
ManagerId: string;
|
|
2150
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
2151
|
-
*
|
|
2152
|
-
* @type {ENUM}
|
|
2153
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
2154
|
-
*/
|
|
2155
|
-
Region: ServiceAppointmentConfigRegion;
|
|
2156
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
2157
|
-
*
|
|
2158
|
-
* @type {ENUM}
|
|
2159
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
2160
|
-
*/
|
|
2161
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
2162
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
2163
|
-
*
|
|
2164
|
-
* @type {ENUM}
|
|
2165
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
2166
|
-
*/
|
|
2167
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
2168
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2169
|
-
*
|
|
2170
|
-
* @type {NUMBER}
|
|
2171
|
-
* @hidden This field is hidden in the UI
|
|
2172
|
-
*/
|
|
2173
|
-
FridayAm: number;
|
|
2174
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
2175
|
-
*
|
|
2176
|
-
* @type {DATE}
|
|
2177
|
-
* @format DD/MM/YYYY
|
|
2178
|
-
* @default
|
|
2179
|
-
* @hidden This field is hidden in the UI
|
|
2180
|
-
*/
|
|
2181
|
-
Date: string;
|
|
2182
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
2183
|
-
*
|
|
2184
|
-
* @type {TEXT}
|
|
2185
|
-
*/
|
|
2186
|
-
ExPolygonId: string;
|
|
2187
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
2188
|
-
*
|
|
2189
|
-
* @type {NUMBER}
|
|
2190
|
-
* @hidden This field is hidden in the UI
|
|
2191
|
-
*/
|
|
2192
|
-
Pm: number;
|
|
2193
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2194
|
-
*
|
|
2195
|
-
* @type {NUMBER}
|
|
2196
|
-
* @hidden This field is hidden in the UI
|
|
2197
|
-
*/
|
|
2198
|
-
SundayPm: number;
|
|
2199
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2200
|
-
*
|
|
2201
|
-
* @type {NUMBER}
|
|
2202
|
-
* @hidden This field is hidden in the UI
|
|
2203
|
-
*/
|
|
2204
|
-
TuesdayPm: number;
|
|
2205
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
2206
|
-
*
|
|
2207
|
-
* @type {NUMBER}
|
|
2208
|
-
* @hidden This field is hidden in the UI
|
|
2209
|
-
*/
|
|
2210
|
-
Am: number;
|
|
2211
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
2212
|
-
*
|
|
2213
|
-
* @type {BOOLEAN}
|
|
2214
|
-
* @default true
|
|
2215
|
-
*/
|
|
2216
|
-
IsDefault: boolean;
|
|
2217
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
2218
|
-
*
|
|
2219
|
-
* @type {TEXT}
|
|
2220
|
-
* @hidden This field is hidden in the UI
|
|
2221
|
-
*/
|
|
2222
|
-
AddressTypes: string;
|
|
2223
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
2224
|
-
*
|
|
2225
|
-
* @type {LOOKUP}
|
|
2226
|
-
* @hidden This field is hidden in the UI
|
|
2227
|
-
*/
|
|
2228
|
-
RegionId: string;
|
|
2229
|
-
}
|
|
2230
|
-
/**
|
|
2231
|
-
* Properties for WAYLEAVE ServiceAppointmentConfig records
|
|
2232
|
-
*
|
|
2233
|
-
* @see FieldServiceModule:ServiceAppointmentConfig
|
|
2234
|
-
*/
|
|
2235
|
-
export interface WayleaveServiceAppointmentConfigProperties {
|
|
2236
|
-
/** Wednesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2237
|
-
*
|
|
2238
|
-
* @type {NUMBER}
|
|
2239
|
-
* @hidden This field is hidden in the UI
|
|
2240
|
-
*/
|
|
2241
|
-
WednesdayAm: number;
|
|
2242
|
-
/** Friday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2243
|
-
*
|
|
2244
|
-
* @type {NUMBER}
|
|
2245
|
-
* @hidden This field is hidden in the UI
|
|
2246
|
-
*/
|
|
2247
|
-
FridayPm: number;
|
|
2248
|
-
/** Monday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2249
|
-
*
|
|
2250
|
-
* @type {NUMBER}
|
|
2251
|
-
* @hidden This field is hidden in the UI
|
|
2252
|
-
*/
|
|
2253
|
-
MondayAm: number;
|
|
2254
|
-
/** Saturday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2255
|
-
*
|
|
2256
|
-
* @type {NUMBER}
|
|
2257
|
-
* @hidden This field is hidden in the UI
|
|
2258
|
-
*/
|
|
2259
|
-
SaturdayPm: number;
|
|
2260
|
-
/** Tuesday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2261
|
-
*
|
|
2262
|
-
* @type {NUMBER}
|
|
2263
|
-
* @hidden This field is hidden in the UI
|
|
2264
|
-
*/
|
|
2265
|
-
TuesdayAm: number;
|
|
2266
|
-
/** Display name/title for ServiceAppointmentConfig records. Primary identifier for Field Operations team.
|
|
2267
|
-
*
|
|
2268
|
-
* @type {TEXT}
|
|
2269
|
-
*/
|
|
2270
|
-
Name: string;
|
|
2271
|
-
/** Saturday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2272
|
-
*
|
|
2273
|
-
* @type {NUMBER}
|
|
2274
|
-
* @hidden This field is hidden in the UI
|
|
2275
|
-
*/
|
|
2276
|
-
SaturdayAm: number;
|
|
2277
|
-
/** Thursday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2278
|
-
*
|
|
2279
|
-
* @type {NUMBER}
|
|
2280
|
-
* @hidden This field is hidden in the UI
|
|
2281
|
-
*/
|
|
2282
|
-
ThursdayPm: number;
|
|
2283
|
-
/** Monday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2284
|
-
*
|
|
2285
|
-
* @type {NUMBER}
|
|
2286
|
-
* @hidden This field is hidden in the UI
|
|
2287
|
-
*/
|
|
2288
|
-
MondayPm: number;
|
|
2289
|
-
/** Sunday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2290
|
-
*
|
|
2291
|
-
* @type {NUMBER}
|
|
2292
|
-
* @hidden This field is hidden in the UI
|
|
2293
|
-
*/
|
|
2294
|
-
SundayAm: number;
|
|
2295
|
-
/** Wednesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2296
|
-
*
|
|
2297
|
-
* @type {NUMBER}
|
|
2298
|
-
* @hidden This field is hidden in the UI
|
|
2299
|
-
*/
|
|
2300
|
-
WednesdayPm: number;
|
|
2301
|
-
/** Thursday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2302
|
-
*
|
|
2303
|
-
* @type {NUMBER}
|
|
2304
|
-
* @hidden This field is hidden in the UI
|
|
2305
|
-
*/
|
|
2306
|
-
ThursdayAm: number;
|
|
2307
|
-
/** context of the config, what areas does it service ? (Field Operations - ServiceAppointmentConfig)
|
|
2308
|
-
*
|
|
2309
|
-
* @type {TEXT_LONG}
|
|
2310
|
-
*/
|
|
2311
|
-
Description: string;
|
|
2312
|
-
/** the date this appointment config should be available from (Field Operations - ServiceAppointmentConfig)
|
|
2313
|
-
*
|
|
2314
|
-
* @type {DATE}
|
|
2315
|
-
* @format DD/MM/YYYY
|
|
2316
|
-
*/
|
|
2317
|
-
AvailableFrom: string;
|
|
2318
|
-
/** the schedule booking priority (1,2,3) (Field Operations - ServiceAppointmentConfig)
|
|
2319
|
-
*
|
|
2320
|
-
* @type {NUMBER}
|
|
2321
|
-
*/
|
|
2322
|
-
Priority: number;
|
|
2323
|
-
/** Supervisor (Regional) (Field Operations - ServiceAppointmentConfig)
|
|
2324
|
-
*
|
|
2325
|
-
* @type {LOOKUP}
|
|
2326
|
-
* @hidden This field is hidden in the UI
|
|
2327
|
-
*/
|
|
2328
|
-
SupervisorId: string;
|
|
2329
|
-
/** the date the config should end (Field Operations - ServiceAppointmentConfig)
|
|
2330
|
-
*
|
|
2331
|
-
* @type {DATE}
|
|
2332
|
-
* @format DD/MM/YYYY
|
|
2333
|
-
* @default
|
|
2334
|
-
*/
|
|
2335
|
-
AvailableTo: string;
|
|
2336
|
-
/** the number of days before a Service Appointment can be booked (Field Operations - ServiceAppointmentConfig)
|
|
2337
|
-
*
|
|
2338
|
-
* @type {NUMBER}
|
|
2339
|
-
*/
|
|
2340
|
-
BookingDelay: number;
|
|
2341
|
-
/** This will stop bookings from happening after MaxAdvanceBooking (days) from today (Field Operations - ServiceAppointmentConfig)
|
|
2342
|
-
*
|
|
2343
|
-
* @type {NUMBER}
|
|
2344
|
-
*/
|
|
2345
|
-
MaxAdvanceBooking: number;
|
|
2346
|
-
/** Manager (Exchange level) (Field Operations - ServiceAppointmentConfig)
|
|
2347
|
-
*
|
|
2348
|
-
* @type {LOOKUP}
|
|
2349
|
-
* @hidden This field is hidden in the UI
|
|
2350
|
-
*/
|
|
2351
|
-
ManagerId: string;
|
|
2352
|
-
/** the region selection (Field Operations - ServiceAppointmentConfig)
|
|
2353
|
-
*
|
|
2354
|
-
* @type {ENUM}
|
|
2355
|
-
* @enum {ServiceAppointmentConfigRegion}
|
|
2356
|
-
*/
|
|
2357
|
-
Region: ServiceAppointmentConfigRegion;
|
|
2358
|
-
/** Generate pre pull work orders (Field Operations - ServiceAppointmentConfig)
|
|
2359
|
-
*
|
|
2360
|
-
* @type {ENUM}
|
|
2361
|
-
* @enum {ServiceAppointmentConfigEnablePrePull}
|
|
2362
|
-
*/
|
|
2363
|
-
EnablePrePull: ServiceAppointmentConfigEnablePrePull;
|
|
2364
|
-
/** the contractor selection (Field Operations - ServiceAppointmentConfig)
|
|
2365
|
-
*
|
|
2366
|
-
* @type {ENUM}
|
|
2367
|
-
* @enum {ServiceAppointmentConfigContractor}
|
|
2368
|
-
*/
|
|
2369
|
-
Contractor: ServiceAppointmentConfigContractor;
|
|
2370
|
-
/** Friday AM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2371
|
-
*
|
|
2372
|
-
* @type {NUMBER}
|
|
2373
|
-
* @hidden This field is hidden in the UI
|
|
2374
|
-
*/
|
|
2375
|
-
FridayAm: number;
|
|
2376
|
-
/** Adjust the availability on a specific date (Field Operations - ServiceAppointmentConfig)
|
|
2377
|
-
*
|
|
2378
|
-
* @type {DATE}
|
|
2379
|
-
* @format DD/MM/YYYY
|
|
2380
|
-
* @default
|
|
2381
|
-
* @hidden This field is hidden in the UI
|
|
2382
|
-
*/
|
|
2383
|
-
Date: string;
|
|
2384
|
-
/** the id of the ex polygon, use 000 for global region configurations (Field Operations - ServiceAppointmentConfig)
|
|
2385
|
-
*
|
|
2386
|
-
* @type {TEXT}
|
|
2387
|
-
*/
|
|
2388
|
-
ExPolygonId: string;
|
|
2389
|
-
/** Total number of PM slots (Field Operations - ServiceAppointmentConfig)
|
|
2390
|
-
*
|
|
2391
|
-
* @type {NUMBER}
|
|
2392
|
-
* @hidden This field is hidden in the UI
|
|
2393
|
-
*/
|
|
2394
|
-
Pm: number;
|
|
2395
|
-
/** Sunday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2396
|
-
*
|
|
2397
|
-
* @type {NUMBER}
|
|
2398
|
-
* @hidden This field is hidden in the UI
|
|
2399
|
-
*/
|
|
2400
|
-
SundayPm: number;
|
|
2401
|
-
/** Tuesday PM slots available (Field Operations - ServiceAppointmentConfig)
|
|
2402
|
-
*
|
|
2403
|
-
* @type {NUMBER}
|
|
2404
|
-
* @hidden This field is hidden in the UI
|
|
2405
|
-
*/
|
|
2406
|
-
TuesdayPm: number;
|
|
2407
|
-
/** Total number of AM Slots (Field Operations - ServiceAppointmentConfig)
|
|
2408
|
-
*
|
|
2409
|
-
* @type {NUMBER}
|
|
2410
|
-
* @hidden This field is hidden in the UI
|
|
2411
|
-
*/
|
|
2412
|
-
Am: number;
|
|
2413
|
-
/** is this the default config for the type and the area (Field Operations - ServiceAppointmentConfig)
|
|
2414
|
-
*
|
|
2415
|
-
* @type {BOOLEAN}
|
|
2416
|
-
* @default true
|
|
2417
|
-
*/
|
|
2418
|
-
IsDefault: boolean;
|
|
2419
|
-
/** Comma separated value of Address > Classification (RESIDENTIAL, BUSINESS, etc,) (Field Operations - ServiceAppointmentConfig)
|
|
2420
|
-
*
|
|
2421
|
-
* @type {TEXT}
|
|
2422
|
-
* @hidden This field is hidden in the UI
|
|
2423
|
-
*/
|
|
2424
|
-
AddressTypes: string;
|
|
2425
|
-
/** The linked region (Field Operations - ServiceAppointmentConfig)
|
|
2426
|
-
*
|
|
2427
|
-
* @type {LOOKUP}
|
|
2428
|
-
* @hidden This field is hidden in the UI
|
|
2429
|
-
*/
|
|
2430
|
-
RegionId: string;
|
|
2431
|
-
}
|
|
2432
|
-
/**
|
|
2433
|
-
* ServiceAppointmentConfig entity from FieldServiceModule
|
|
2434
|
-
*
|
|
2435
|
-
* ServiceAppointmentConfig entity for Field Operations operations. Part of FieldServiceModule. Contains business data for field operations workflows.
|
|
2436
|
-
*
|
|
2437
|
-
* @module FieldServiceModule
|
|
2438
|
-
* @entity ServiceAppointmentConfig
|
|
2439
|
-
* @schemaId 3cf22169-1376-4087-8ffd-bedc7bb5f60f
|
|
2440
|
-
* @menuLabel Schedules
|
|
2441
|
-
* @capabilities searchable, updateable, undeletable, triggerable
|
|
2442
|
-
*/
|
|
2443
|
-
export declare class ServiceAppointmentConfig extends OdinRecord<ServiceAppointmentConfigProperties> {
|
|
2444
|
-
entity: 'FieldServiceModule:ServiceAppointmentConfig';
|
|
2445
|
-
type: ServiceAppointmentConfigEntityTypes;
|
|
2446
|
-
schemaId: '3cf22169-1376-4087-8ffd-bedc7bb5f60f';
|
|
2447
|
-
properties: ServiceAppointmentConfigProperties;
|
|
2448
|
-
/** Linked User records (Engineers) */
|
|
2449
|
-
User: OdinLink<LinkedOdinRecord<UserProperties>>;
|
|
2450
|
-
/** Linked Note records (ServiceAppointmentConfig__Note) */
|
|
2451
|
-
Note: OdinLink<LinkedOdinRecord<NoteProperties>>;
|
|
2452
|
-
/** Linked ServiceAppointment records (ServiceAppointmentConfig__ServiceAppointment) */
|
|
2453
|
-
ServiceAppointment: OdinLink<LinkedOdinRecord<ServiceAppointmentProperties>>;
|
|
2454
|
-
/** Linked ChangeReason records (ChangeReason__ServiceAppointmentConfig) */
|
|
2455
|
-
ChangeReason: OdinLink<LinkedOdinRecord<ChangeReasonProperties>>;
|
|
2456
|
-
/** Linked WorkOrder records (WorkOrder__ServiceAppointmentConfig) */
|
|
2457
|
-
WorkOrder: OdinLink<LinkedOdinRecord<WorkOrderProperties>>;
|
|
2458
|
-
/** Linked ScheduleSlot records (ServiceAppointmentConfig__ScheduleSlot) */
|
|
2459
|
-
ScheduleSlot: OdinLink<LinkedOdinRecord<ScheduleSlotProperties>>;
|
|
2460
|
-
/** Linked Region records (ServiceAppointmentConfig_Region) */
|
|
2461
|
-
Region: OdinLink<LinkedOdinRecord<RegionProperties>>;
|
|
2462
|
-
}
|
|
2463
|
-
/**
|
|
2464
|
-
* RabbitMQ routing keys for ServiceAppointmentConfig events
|
|
2465
|
-
*/
|
|
2466
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_CREATED = "FieldServiceModule.ServiceAppointmentConfig.SubDbRecordCreated";
|
|
2467
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.SubDbRecordUpdated";
|
|
2468
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_DELETED = "FieldServiceModule.ServiceAppointmentConfig.SubDbRecordDeleted";
|
|
2469
|
-
/**
|
|
2470
|
-
* Type-specific routing keys for ServiceAppointmentConfig events
|
|
2471
|
-
* Subscribe to these for events on specific entity types only
|
|
2472
|
-
*/
|
|
2473
|
-
/** Finance schedule created */
|
|
2474
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_FINANCE_CREATED = "FieldServiceModule.ServiceAppointmentConfig.FINANCE.SubDbRecordCreated";
|
|
2475
|
-
/** Finance schedule updated */
|
|
2476
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_FINANCE_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.FINANCE.SubDbRecordUpdated";
|
|
2477
|
-
/** Finance schedule deleted */
|
|
2478
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_FINANCE_DELETED = "FieldServiceModule.ServiceAppointmentConfig.FINANCE.SubDbRecordDeleted";
|
|
2479
|
-
/** Inspection created */
|
|
2480
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSPECTION_CREATED = "FieldServiceModule.ServiceAppointmentConfig.INSPECTION.SubDbRecordCreated";
|
|
2481
|
-
/** Inspection updated */
|
|
2482
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSPECTION_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.INSPECTION.SubDbRecordUpdated";
|
|
2483
|
-
/** Inspection deleted */
|
|
2484
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSPECTION_DELETED = "FieldServiceModule.ServiceAppointmentConfig.INSPECTION.SubDbRecordDeleted";
|
|
2485
|
-
/** install appointments created */
|
|
2486
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSTALL_CREATED = "FieldServiceModule.ServiceAppointmentConfig.INSTALL.SubDbRecordCreated";
|
|
2487
|
-
/** install appointments updated */
|
|
2488
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSTALL_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.INSTALL.SubDbRecordUpdated";
|
|
2489
|
-
/** install appointments deleted */
|
|
2490
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSTALL_DELETED = "FieldServiceModule.ServiceAppointmentConfig.INSTALL.SubDbRecordDeleted";
|
|
2491
|
-
/** schedules allowing both install and service bookings created */
|
|
2492
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSTALL_SERVICE_CREATED = "FieldServiceModule.ServiceAppointmentConfig.INSTALL_SERVICE.SubDbRecordCreated";
|
|
2493
|
-
/** schedules allowing both install and service bookings updated */
|
|
2494
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSTALL_SERVICE_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.INSTALL_SERVICE.SubDbRecordUpdated";
|
|
2495
|
-
/** schedules allowing both install and service bookings deleted */
|
|
2496
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_INSTALL_SERVICE_DELETED = "FieldServiceModule.ServiceAppointmentConfig.INSTALL_SERVICE.SubDbRecordDeleted";
|
|
2497
|
-
/** Network adjustment schedule created */
|
|
2498
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_NETWORK_ADJUSTMENT_CREATED = "FieldServiceModule.ServiceAppointmentConfig.NETWORK_ADJUSTMENT.SubDbRecordCreated";
|
|
2499
|
-
/** Network adjustment schedule updated */
|
|
2500
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_NETWORK_ADJUSTMENT_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.NETWORK_ADJUSTMENT.SubDbRecordUpdated";
|
|
2501
|
-
/** Network adjustment schedule deleted */
|
|
2502
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_NETWORK_ADJUSTMENT_DELETED = "FieldServiceModule.ServiceAppointmentConfig.NETWORK_ADJUSTMENT.SubDbRecordDeleted";
|
|
2503
|
-
/** Planning schedule created */
|
|
2504
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_PLANNING_CREATED = "FieldServiceModule.ServiceAppointmentConfig.PLANNING.SubDbRecordCreated";
|
|
2505
|
-
/** Planning schedule updated */
|
|
2506
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_PLANNING_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.PLANNING.SubDbRecordUpdated";
|
|
2507
|
-
/** Planning schedule deleted */
|
|
2508
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_PLANNING_DELETED = "FieldServiceModule.ServiceAppointmentConfig.PLANNING.SubDbRecordDeleted";
|
|
2509
|
-
/** Pre-pull schedule type created */
|
|
2510
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_PRE_PULL_CREATED = "FieldServiceModule.ServiceAppointmentConfig.PRE_PULL.SubDbRecordCreated";
|
|
2511
|
-
/** Pre-pull schedule type updated */
|
|
2512
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_PRE_PULL_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.PRE_PULL.SubDbRecordUpdated";
|
|
2513
|
-
/** Pre-pull schedule type deleted */
|
|
2514
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_PRE_PULL_DELETED = "FieldServiceModule.ServiceAppointmentConfig.PRE_PULL.SubDbRecordDeleted";
|
|
2515
|
-
/** Remediation created */
|
|
2516
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_REMEDIATION_CREATED = "FieldServiceModule.ServiceAppointmentConfig.REMEDIATION.SubDbRecordCreated";
|
|
2517
|
-
/** Remediation updated */
|
|
2518
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_REMEDIATION_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.REMEDIATION.SubDbRecordUpdated";
|
|
2519
|
-
/** Remediation deleted */
|
|
2520
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_REMEDIATION_DELETED = "FieldServiceModule.ServiceAppointmentConfig.REMEDIATION.SubDbRecordDeleted";
|
|
2521
|
-
/** service appointments created */
|
|
2522
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_SERVICE_CREATED = "FieldServiceModule.ServiceAppointmentConfig.SERVICE.SubDbRecordCreated";
|
|
2523
|
-
/** service appointments updated */
|
|
2524
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_SERVICE_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.SERVICE.SubDbRecordUpdated";
|
|
2525
|
-
/** service appointments deleted */
|
|
2526
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_SERVICE_DELETED = "FieldServiceModule.ServiceAppointmentConfig.SERVICE.SubDbRecordDeleted";
|
|
2527
|
-
/** Wayleave schedule created */
|
|
2528
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_WAYLEAVE_CREATED = "FieldServiceModule.ServiceAppointmentConfig.WAYLEAVE.SubDbRecordCreated";
|
|
2529
|
-
/** Wayleave schedule updated */
|
|
2530
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_WAYLEAVE_UPDATED = "FieldServiceModule.ServiceAppointmentConfig.WAYLEAVE.SubDbRecordUpdated";
|
|
2531
|
-
/** Wayleave schedule deleted */
|
|
2532
|
-
export declare const ROUTING_KEY_SERVICE_APPOINTMENT_CONFIG_WAYLEAVE_DELETED = "FieldServiceModule.ServiceAppointmentConfig.WAYLEAVE.SubDbRecordDeleted";
|
|
2533
|
-
/** Event: Engineers link created */
|
|
2534
|
-
export declare const ROUTING_KEY_LINK_ENGINEERS_CREATED = "FieldServiceModule.ServiceAppointmentConfig.User.SubDbRecordAssociationCreated";
|
|
2535
|
-
/** Event: Engineers link deleted */
|
|
2536
|
-
export declare const ROUTING_KEY_LINK_ENGINEERS_DELETED = "FieldServiceModule.ServiceAppointmentConfig.User.SubDbRecordAssociationDeleted";
|
|
2537
|
-
/** Event: ServiceAppointmentConfig__Note link created */
|
|
2538
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_NOTE_CREATED = "FieldServiceModule.ServiceAppointmentConfig.Note.SubDbRecordAssociationCreated";
|
|
2539
|
-
/** Event: ServiceAppointmentConfig__Note link deleted */
|
|
2540
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_NOTE_DELETED = "FieldServiceModule.ServiceAppointmentConfig.Note.SubDbRecordAssociationDeleted";
|
|
2541
|
-
/** Event: ServiceAppointmentConfig__ServiceAppointment link created */
|
|
2542
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_SERVICE_APPOINTMENT_CREATED = "FieldServiceModule.ServiceAppointmentConfig.ServiceAppointment.SubDbRecordAssociationCreated";
|
|
2543
|
-
/** Event: ServiceAppointmentConfig__ServiceAppointment link deleted */
|
|
2544
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_SERVICE_APPOINTMENT_DELETED = "FieldServiceModule.ServiceAppointmentConfig.ServiceAppointment.SubDbRecordAssociationDeleted";
|
|
2545
|
-
/** Event: ServiceAppointmentConfig__ScheduleSlot link created */
|
|
2546
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_SCHEDULE_SLOT_CREATED = "FieldServiceModule.ServiceAppointmentConfig.ScheduleSlot.SubDbRecordAssociationCreated";
|
|
2547
|
-
/** Event: ServiceAppointmentConfig__ScheduleSlot link deleted */
|
|
2548
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_SCHEDULE_SLOT_DELETED = "FieldServiceModule.ServiceAppointmentConfig.ScheduleSlot.SubDbRecordAssociationDeleted";
|
|
2549
|
-
/** Event: ServiceAppointmentConfig_Region link created */
|
|
2550
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_REGION_CREATED = "FieldServiceModule.ServiceAppointmentConfig.Region.SubDbRecordAssociationCreated";
|
|
2551
|
-
/** Event: ServiceAppointmentConfig_Region link deleted */
|
|
2552
|
-
export declare const ROUTING_KEY_LINK_SERVICE_APPOINTMENT_CONFIG_REGION_DELETED = "FieldServiceModule.ServiceAppointmentConfig.Region.SubDbRecordAssociationDeleted";
|