@d19n/youfibre-odin-sdk 1.0.196 → 1.0.197
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/actions-v2/CancelBillingRequestDto.d.ts +1 -0
- package/dist/actions-v2/CompleteInstallWorkOrderFlowDto.d.ts +0 -2
- package/dist/entities-v2/BillingAdjustment.d.ts +19 -19
- package/dist/entities-v2/BillingAdjustment.js +16 -16
- package/dist/entities-v2/KnowledgeArticle.d.ts +3 -3
- package/dist/entities-v2/KnowledgeArticle.js +3 -3
- package/dist/entities-v2/OhRetroAudit.d.ts +7 -2
- package/dist/entities-v2/OhRetroAudit.js +7 -2
- package/dist/entities-v2/OutcomeFormOhRetroAudit.d.ts +7 -2
- package/dist/entities-v2/OutcomeFormOhRetroAudit.js +7 -2
- package/dist/entities-v2/OutcomeFormUgRetroAudit.d.ts +6 -1
- package/dist/entities-v2/OutcomeFormUgRetroAudit.js +7 -2
- package/dist/entities-v2/ReleaseNoteKnowledgeArticle.d.ts +3 -3
- package/dist/entities-v2/ReleaseNoteKnowledgeArticle.js +3 -3
- package/dist/entities-v2/UgRetroAudit.d.ts +6 -1
- package/dist/entities-v2/UgRetroAudit.js +7 -2
- package/dist/entities-v2/UserGuideKnowledgeArticle.d.ts +4 -3
- package/dist/entities-v2/UserGuideKnowledgeArticle.js +3 -3
- package/dist/types-v1/Types.d.ts +3 -3
- package/dist/types-v1/Types.js +3 -3
- package/package.json +2 -2
- package/src/actions-v2/CancelBillingRequestDto.ts +1 -0
- package/src/actions-v2/CompleteInstallWorkOrderFlowDto.ts +0 -2
- package/src/entities-v2/BillingAdjustment.ts +23 -23
- package/src/entities-v2/KnowledgeArticle.ts +3 -3
- package/src/entities-v2/OhRetroAudit.ts +7 -1
- package/src/entities-v2/OutcomeFormOhRetroAudit.ts +7 -1
- package/src/entities-v2/OutcomeFormUgRetroAudit.ts +7 -1
- package/src/entities-v2/ReleaseNoteKnowledgeArticle.ts +3 -3
- package/src/entities-v2/UgRetroAudit.ts +7 -1
- package/src/entities-v2/UserGuideKnowledgeArticle.ts +5 -3
- package/src/types-v1/Types.ts +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OdinRecord, OdinRecordUpdateDto, OdinRecordUpdatedEvent } from '@d19n/odin-types/dist/core';
|
|
2
2
|
interface CancelBillingRequestProperties {
|
|
3
3
|
Status: string;
|
|
4
|
+
GcStatus: string;
|
|
4
5
|
}
|
|
5
6
|
export declare class CancelBillingRequestDto extends OdinRecordUpdateDto<CancelBillingRequestProperties> {
|
|
6
7
|
readonly actionName: string;
|
|
@@ -421,7 +421,6 @@ export declare class OhInstallationAuditDto extends OdinRecordCreateDto<OhInstal
|
|
|
421
421
|
export interface OhInstallationAuditMessage extends OdinRecordCreatedEvent<OhInstallationAuditDto, OhInstallationAuditProperties> {
|
|
422
422
|
}
|
|
423
423
|
interface UgRetroAuditProperties {
|
|
424
|
-
ExternalInternalSelector: string;
|
|
425
424
|
Cable300mmAway?: string;
|
|
426
425
|
Cable300mmAwayImage?: undefined;
|
|
427
426
|
CableCleated?: string;
|
|
@@ -498,7 +497,6 @@ export declare class UgInProgressAuditDto extends OdinRecordCreateDto<UgInProgre
|
|
|
498
497
|
export interface UgInProgressAuditMessage extends OdinRecordCreatedEvent<UgInProgressAuditDto, UgInProgressAuditProperties> {
|
|
499
498
|
}
|
|
500
499
|
interface OhRetroAuditProperties {
|
|
501
|
-
ExternalInternalSelector: string;
|
|
502
500
|
InstallationRevision: string;
|
|
503
501
|
PreClimbCheckCarriedOut?: string;
|
|
504
502
|
PreClimbCheckCarriedOutImage?: undefined;
|
|
@@ -6,6 +6,14 @@ import { FileProperties } from './File';
|
|
|
6
6
|
export declare enum BillingAdjustmentEntityTypes {
|
|
7
7
|
DEFAULT = "DEFAULT"
|
|
8
8
|
}
|
|
9
|
+
export declare enum BillingAdjustmentDiscountType {
|
|
10
|
+
AMOUNT = "AMOUNT",
|
|
11
|
+
PERCENT = "PERCENT"
|
|
12
|
+
}
|
|
13
|
+
export declare enum BillingAdjustmentProrationType {
|
|
14
|
+
CHARGE = "CHARGE",
|
|
15
|
+
CREDIT = "CREDIT"
|
|
16
|
+
}
|
|
9
17
|
export declare enum BillingAdjustmentReason {
|
|
10
18
|
BILLING_DAY_ADJUSMENT_LEGACY = "BILLING_DAY_ADJUSTMENT",
|
|
11
19
|
BILLING_DATE_CHANGE = "BILLING_DATE_CHANGE",
|
|
@@ -21,37 +29,29 @@ export declare enum BillingAdjustmentReason {
|
|
|
21
29
|
SALES_MISSELLING_ADJUSTMENT = "SALES_MISSELLING_ADJUSTMENT",
|
|
22
30
|
OUTAGE_COMPENSATION = "OUTAGE_COMPENSATION"
|
|
23
31
|
}
|
|
24
|
-
export declare enum BillingAdjustmentDiscountType {
|
|
25
|
-
AMOUNT = "AMOUNT",
|
|
26
|
-
PERCENT = "PERCENT"
|
|
27
|
-
}
|
|
28
|
-
export declare enum BillingAdjustmentProrationType {
|
|
29
|
-
CHARGE = "CHARGE",
|
|
30
|
-
CREDIT = "CREDIT"
|
|
31
|
-
}
|
|
32
32
|
export declare enum BillingAdjustmentPropertyKeys {
|
|
33
|
-
|
|
34
|
-
Reason = "Reason",
|
|
33
|
+
Description = "Description",
|
|
35
34
|
DiscountLength = "DiscountLength",
|
|
36
35
|
DiscountType = "DiscountType",
|
|
37
36
|
DiscountValue = "DiscountValue",
|
|
38
|
-
|
|
37
|
+
FreePeriodLength = "FreePeriodLength",
|
|
39
38
|
ProrationBillableDays = "ProrationBillableDays",
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
Source = "Source"
|
|
39
|
+
ProrationType = "ProrationType",
|
|
40
|
+
Reason = "Reason",
|
|
41
|
+
Source = "Source",
|
|
42
|
+
Title = "Title"
|
|
43
43
|
}
|
|
44
44
|
export interface BillingAdjustmentProperties {
|
|
45
|
-
|
|
46
|
-
Reason: BillingAdjustmentReason;
|
|
45
|
+
Description: string;
|
|
47
46
|
DiscountLength: number;
|
|
48
47
|
DiscountType: BillingAdjustmentDiscountType;
|
|
49
48
|
DiscountValue: number;
|
|
50
|
-
|
|
49
|
+
FreePeriodLength: number;
|
|
51
50
|
ProrationBillableDays: number;
|
|
52
|
-
|
|
53
|
-
|
|
51
|
+
ProrationType: BillingAdjustmentProrationType;
|
|
52
|
+
Reason: BillingAdjustmentReason;
|
|
54
53
|
Source: string;
|
|
54
|
+
Title: string;
|
|
55
55
|
}
|
|
56
56
|
export declare class BillingAdjustment extends OdinRecord<BillingAdjustmentProperties> {
|
|
57
57
|
entity: 'OrderModule:BillingAdjustment';
|
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_CREATED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_CREATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_DELETED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_UPDATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_CREATED = exports.BillingAdjustment = exports.BillingAdjustmentPropertyKeys = exports.
|
|
3
|
+
exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_FILE_CREATED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_DELETED = exports.ROUTING_KEY_LINK_BILLING_ADJUSTMENT_NOTE_CREATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_DELETED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_UPDATED = exports.ROUTING_KEY_BILLING_ADJUSTMENT_CREATED = exports.BillingAdjustment = exports.BillingAdjustmentPropertyKeys = exports.BillingAdjustmentReason = exports.BillingAdjustmentProrationType = exports.BillingAdjustmentDiscountType = exports.BillingAdjustmentEntityTypes = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
5
|
var BillingAdjustmentEntityTypes;
|
|
6
6
|
(function (BillingAdjustmentEntityTypes) {
|
|
7
7
|
BillingAdjustmentEntityTypes["DEFAULT"] = "DEFAULT";
|
|
8
8
|
})(BillingAdjustmentEntityTypes = exports.BillingAdjustmentEntityTypes || (exports.BillingAdjustmentEntityTypes = {}));
|
|
9
|
+
var BillingAdjustmentDiscountType;
|
|
10
|
+
(function (BillingAdjustmentDiscountType) {
|
|
11
|
+
BillingAdjustmentDiscountType["AMOUNT"] = "AMOUNT";
|
|
12
|
+
BillingAdjustmentDiscountType["PERCENT"] = "PERCENT";
|
|
13
|
+
})(BillingAdjustmentDiscountType = exports.BillingAdjustmentDiscountType || (exports.BillingAdjustmentDiscountType = {}));
|
|
14
|
+
var BillingAdjustmentProrationType;
|
|
15
|
+
(function (BillingAdjustmentProrationType) {
|
|
16
|
+
BillingAdjustmentProrationType["CHARGE"] = "CHARGE";
|
|
17
|
+
BillingAdjustmentProrationType["CREDIT"] = "CREDIT";
|
|
18
|
+
})(BillingAdjustmentProrationType = exports.BillingAdjustmentProrationType || (exports.BillingAdjustmentProrationType = {}));
|
|
9
19
|
var BillingAdjustmentReason;
|
|
10
20
|
(function (BillingAdjustmentReason) {
|
|
11
21
|
BillingAdjustmentReason["BILLING_DAY_ADJUSMENT_LEGACY"] = "BILLING_DAY_ADJUSTMENT";
|
|
@@ -22,28 +32,18 @@ var BillingAdjustmentReason;
|
|
|
22
32
|
BillingAdjustmentReason["SALES_MISSELLING_ADJUSTMENT"] = "SALES_MISSELLING_ADJUSTMENT";
|
|
23
33
|
BillingAdjustmentReason["OUTAGE_COMPENSATION"] = "OUTAGE_COMPENSATION";
|
|
24
34
|
})(BillingAdjustmentReason = exports.BillingAdjustmentReason || (exports.BillingAdjustmentReason = {}));
|
|
25
|
-
var BillingAdjustmentDiscountType;
|
|
26
|
-
(function (BillingAdjustmentDiscountType) {
|
|
27
|
-
BillingAdjustmentDiscountType["AMOUNT"] = "AMOUNT";
|
|
28
|
-
BillingAdjustmentDiscountType["PERCENT"] = "PERCENT";
|
|
29
|
-
})(BillingAdjustmentDiscountType = exports.BillingAdjustmentDiscountType || (exports.BillingAdjustmentDiscountType = {}));
|
|
30
|
-
var BillingAdjustmentProrationType;
|
|
31
|
-
(function (BillingAdjustmentProrationType) {
|
|
32
|
-
BillingAdjustmentProrationType["CHARGE"] = "CHARGE";
|
|
33
|
-
BillingAdjustmentProrationType["CREDIT"] = "CREDIT";
|
|
34
|
-
})(BillingAdjustmentProrationType = exports.BillingAdjustmentProrationType || (exports.BillingAdjustmentProrationType = {}));
|
|
35
35
|
var BillingAdjustmentPropertyKeys;
|
|
36
36
|
(function (BillingAdjustmentPropertyKeys) {
|
|
37
|
-
BillingAdjustmentPropertyKeys["
|
|
38
|
-
BillingAdjustmentPropertyKeys["Reason"] = "Reason";
|
|
37
|
+
BillingAdjustmentPropertyKeys["Description"] = "Description";
|
|
39
38
|
BillingAdjustmentPropertyKeys["DiscountLength"] = "DiscountLength";
|
|
40
39
|
BillingAdjustmentPropertyKeys["DiscountType"] = "DiscountType";
|
|
41
40
|
BillingAdjustmentPropertyKeys["DiscountValue"] = "DiscountValue";
|
|
42
|
-
BillingAdjustmentPropertyKeys["
|
|
41
|
+
BillingAdjustmentPropertyKeys["FreePeriodLength"] = "FreePeriodLength";
|
|
43
42
|
BillingAdjustmentPropertyKeys["ProrationBillableDays"] = "ProrationBillableDays";
|
|
44
|
-
BillingAdjustmentPropertyKeys["
|
|
45
|
-
BillingAdjustmentPropertyKeys["
|
|
43
|
+
BillingAdjustmentPropertyKeys["ProrationType"] = "ProrationType";
|
|
44
|
+
BillingAdjustmentPropertyKeys["Reason"] = "Reason";
|
|
46
45
|
BillingAdjustmentPropertyKeys["Source"] = "Source";
|
|
46
|
+
BillingAdjustmentPropertyKeys["Title"] = "Title";
|
|
47
47
|
})(BillingAdjustmentPropertyKeys = exports.BillingAdjustmentPropertyKeys || (exports.BillingAdjustmentPropertyKeys = {}));
|
|
48
48
|
class BillingAdjustment extends core_1.OdinRecord {
|
|
49
49
|
}
|
|
@@ -22,11 +22,11 @@ export declare enum KnowledgeArticleModuleName {
|
|
|
22
22
|
CRM_MODULE = "CRM_MODULE"
|
|
23
23
|
}
|
|
24
24
|
export declare enum KnowledgeArticleCategory {
|
|
25
|
-
|
|
26
|
-
BILLING_PROCESS = "BILLING_PROCESS",
|
|
25
|
+
SALES_PROCESS = "SALES_PROCESS",
|
|
27
26
|
SUPPORT_PROCESS = "SUPPORT_PROCESS",
|
|
28
27
|
SOLUTIONS_PROCESS = "SOLUTIONS_PROCESS",
|
|
29
|
-
|
|
28
|
+
BILLING_PROCESS = "BILLING_PROCESS",
|
|
29
|
+
LEAD_PROCESS = "LEAD_PROCESS"
|
|
30
30
|
}
|
|
31
31
|
export declare enum KnowledgeArticlePropertyKeys {
|
|
32
32
|
Status = "Status",
|
|
@@ -27,11 +27,11 @@ var KnowledgeArticleModuleName;
|
|
|
27
27
|
})(KnowledgeArticleModuleName = exports.KnowledgeArticleModuleName || (exports.KnowledgeArticleModuleName = {}));
|
|
28
28
|
var KnowledgeArticleCategory;
|
|
29
29
|
(function (KnowledgeArticleCategory) {
|
|
30
|
-
KnowledgeArticleCategory["
|
|
31
|
-
KnowledgeArticleCategory["BILLING_PROCESS"] = "BILLING_PROCESS";
|
|
30
|
+
KnowledgeArticleCategory["SALES_PROCESS"] = "SALES_PROCESS";
|
|
32
31
|
KnowledgeArticleCategory["SUPPORT_PROCESS"] = "SUPPORT_PROCESS";
|
|
33
32
|
KnowledgeArticleCategory["SOLUTIONS_PROCESS"] = "SOLUTIONS_PROCESS";
|
|
34
|
-
KnowledgeArticleCategory["
|
|
33
|
+
KnowledgeArticleCategory["BILLING_PROCESS"] = "BILLING_PROCESS";
|
|
34
|
+
KnowledgeArticleCategory["LEAD_PROCESS"] = "LEAD_PROCESS";
|
|
35
35
|
})(KnowledgeArticleCategory = exports.KnowledgeArticleCategory || (exports.KnowledgeArticleCategory = {}));
|
|
36
36
|
var KnowledgeArticlePropertyKeys;
|
|
37
37
|
(function (KnowledgeArticlePropertyKeys) {
|
|
@@ -62,11 +62,14 @@ export declare enum OhRetroAuditInstallationRevision {
|
|
|
62
62
|
YES = "YES",
|
|
63
63
|
NO = "NO"
|
|
64
64
|
}
|
|
65
|
+
export declare enum OhRetroAuditExternalInternalSelector {
|
|
66
|
+
EXTERNAL_INSTALLATION = "EXTERNAL_INSTALLATION",
|
|
67
|
+
INTERNAL_INSTALLATION = "INTERNAL_INSTALLATION"
|
|
68
|
+
}
|
|
65
69
|
export declare enum OhRetroAuditPropertyKeys {
|
|
66
70
|
EntryHoleSealdNeatAndTidyImage = "EntryHoleSealdNeatAndTidyImage",
|
|
67
71
|
AccessInsideProperty = "AccessInsideProperty",
|
|
68
72
|
DropCableInstalledImage = "DropCableInstalledImage",
|
|
69
|
-
ExternalInternalSelector = "External/InternalSelector",
|
|
70
73
|
PreClimbCheckCarriedOut = "PreClimbCheckCarriedOut",
|
|
71
74
|
PreClimbCheckCarriedOutImage = "PreClimbCheckCarriedOutImage",
|
|
72
75
|
DropCableInstalled = "DropCableInstalled",
|
|
@@ -87,7 +90,8 @@ export declare enum OhRetroAuditPropertyKeys {
|
|
|
87
90
|
CustomerHappyWithService = "CustomerHappyWithService",
|
|
88
91
|
CustomerHappyWithServiceComment = "CustomerHappyWithServiceComment",
|
|
89
92
|
InstallationRevision = "InstallationRevision",
|
|
90
|
-
InstallRevisionComment = "InstallRevisionComment"
|
|
93
|
+
InstallRevisionComment = "InstallRevisionComment",
|
|
94
|
+
ExternalInternalSelector = "ExternalInternalSelector"
|
|
91
95
|
}
|
|
92
96
|
export interface OhRetroAuditProperties {
|
|
93
97
|
EntryHoleSealdNeatAndTidyImage: string;
|
|
@@ -114,6 +118,7 @@ export interface OhRetroAuditProperties {
|
|
|
114
118
|
CustomerHappyWithServiceComment: string;
|
|
115
119
|
InstallationRevision: OhRetroAuditInstallationRevision;
|
|
116
120
|
InstallRevisionComment: string;
|
|
121
|
+
ExternalInternalSelector: OhRetroAuditExternalInternalSelector;
|
|
117
122
|
}
|
|
118
123
|
export declare class OhRetroAudit extends OdinRecord<OhRetroAuditProperties> {
|
|
119
124
|
entity: 'FieldServiceModule:OhRetroAudit';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_OH_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_CREATED = exports.OhRetroAudit = exports.OhRetroAuditPropertyKeys = exports.OhRetroAuditInstallationRevision = exports.OhRetroAuditCustomerHappyWithService = exports.OhRetroAuditWasteRemovedImage = exports.OhRetroAuditWasteRemoved = exports.OhRetroAuditONTWallMounted = exports.OhRetroAuditInternalCablingSecured = exports.OhRetroAuditBestLocationRouterAdvice = exports.OhRetroAuditEntryHoleSealdNeatAndTidy = exports.OhRetroAuditExternalBoxMountedNeatAndTidy = exports.OhRetroAuditCableCleated = exports.OhRetroAuditCorrectFixingApplied = exports.OhRetroAuditDropCableInstalled = exports.OhRetroAuditPreClimbCheckCarriedOut = exports.OhRetroAuditAccessInsideProperty = exports.OhRetroAuditEntityTypes = void 0;
|
|
3
|
+
exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_OH_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_CREATED = exports.OhRetroAudit = exports.OhRetroAuditPropertyKeys = exports.OhRetroAuditExternalInternalSelector = exports.OhRetroAuditInstallationRevision = exports.OhRetroAuditCustomerHappyWithService = exports.OhRetroAuditWasteRemovedImage = exports.OhRetroAuditWasteRemoved = exports.OhRetroAuditONTWallMounted = exports.OhRetroAuditInternalCablingSecured = exports.OhRetroAuditBestLocationRouterAdvice = exports.OhRetroAuditEntryHoleSealdNeatAndTidy = exports.OhRetroAuditExternalBoxMountedNeatAndTidy = exports.OhRetroAuditCableCleated = exports.OhRetroAuditCorrectFixingApplied = exports.OhRetroAuditDropCableInstalled = exports.OhRetroAuditPreClimbCheckCarriedOut = exports.OhRetroAuditAccessInsideProperty = exports.OhRetroAuditEntityTypes = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
5
|
var OhRetroAuditEntityTypes;
|
|
6
6
|
(function (OhRetroAuditEntityTypes) {
|
|
@@ -77,12 +77,16 @@ var OhRetroAuditInstallationRevision;
|
|
|
77
77
|
OhRetroAuditInstallationRevision["YES"] = "YES";
|
|
78
78
|
OhRetroAuditInstallationRevision["NO"] = "NO";
|
|
79
79
|
})(OhRetroAuditInstallationRevision = exports.OhRetroAuditInstallationRevision || (exports.OhRetroAuditInstallationRevision = {}));
|
|
80
|
+
var OhRetroAuditExternalInternalSelector;
|
|
81
|
+
(function (OhRetroAuditExternalInternalSelector) {
|
|
82
|
+
OhRetroAuditExternalInternalSelector["EXTERNAL_INSTALLATION"] = "EXTERNAL_INSTALLATION";
|
|
83
|
+
OhRetroAuditExternalInternalSelector["INTERNAL_INSTALLATION"] = "INTERNAL_INSTALLATION";
|
|
84
|
+
})(OhRetroAuditExternalInternalSelector = exports.OhRetroAuditExternalInternalSelector || (exports.OhRetroAuditExternalInternalSelector = {}));
|
|
80
85
|
var OhRetroAuditPropertyKeys;
|
|
81
86
|
(function (OhRetroAuditPropertyKeys) {
|
|
82
87
|
OhRetroAuditPropertyKeys["EntryHoleSealdNeatAndTidyImage"] = "EntryHoleSealdNeatAndTidyImage";
|
|
83
88
|
OhRetroAuditPropertyKeys["AccessInsideProperty"] = "AccessInsideProperty";
|
|
84
89
|
OhRetroAuditPropertyKeys["DropCableInstalledImage"] = "DropCableInstalledImage";
|
|
85
|
-
OhRetroAuditPropertyKeys["ExternalInternalSelector"] = "External/InternalSelector";
|
|
86
90
|
OhRetroAuditPropertyKeys["PreClimbCheckCarriedOut"] = "PreClimbCheckCarriedOut";
|
|
87
91
|
OhRetroAuditPropertyKeys["PreClimbCheckCarriedOutImage"] = "PreClimbCheckCarriedOutImage";
|
|
88
92
|
OhRetroAuditPropertyKeys["DropCableInstalled"] = "DropCableInstalled";
|
|
@@ -104,6 +108,7 @@ var OhRetroAuditPropertyKeys;
|
|
|
104
108
|
OhRetroAuditPropertyKeys["CustomerHappyWithServiceComment"] = "CustomerHappyWithServiceComment";
|
|
105
109
|
OhRetroAuditPropertyKeys["InstallationRevision"] = "InstallationRevision";
|
|
106
110
|
OhRetroAuditPropertyKeys["InstallRevisionComment"] = "InstallRevisionComment";
|
|
111
|
+
OhRetroAuditPropertyKeys["ExternalInternalSelector"] = "ExternalInternalSelector";
|
|
107
112
|
})(OhRetroAuditPropertyKeys = exports.OhRetroAuditPropertyKeys || (exports.OhRetroAuditPropertyKeys = {}));
|
|
108
113
|
class OhRetroAudit extends core_1.OdinRecord {
|
|
109
114
|
}
|
|
@@ -58,11 +58,14 @@ export declare enum OutcomeFormOhRetroAuditInstallationRevision {
|
|
|
58
58
|
YES = "YES",
|
|
59
59
|
NO = "NO"
|
|
60
60
|
}
|
|
61
|
+
export declare enum OutcomeFormOhRetroAuditExternalInternalSelector {
|
|
62
|
+
EXTERNAL_INSTALLATION = "EXTERNAL_INSTALLATION",
|
|
63
|
+
INTERNAL_INSTALLATION = "INTERNAL_INSTALLATION"
|
|
64
|
+
}
|
|
61
65
|
export declare enum OutcomeFormOhRetroAuditPropertyKeys {
|
|
62
66
|
EntryHoleSealdNeatAndTidyImage = "EntryHoleSealdNeatAndTidyImage",
|
|
63
67
|
AccessInsideProperty = "AccessInsideProperty",
|
|
64
68
|
DropCableInstalledImage = "DropCableInstalledImage",
|
|
65
|
-
ExternalInternalSelector = "External/InternalSelector",
|
|
66
69
|
PreClimbCheckCarriedOut = "PreClimbCheckCarriedOut",
|
|
67
70
|
PreClimbCheckCarriedOutImage = "PreClimbCheckCarriedOutImage",
|
|
68
71
|
DropCableInstalled = "DropCableInstalled",
|
|
@@ -83,7 +86,8 @@ export declare enum OutcomeFormOhRetroAuditPropertyKeys {
|
|
|
83
86
|
CustomerHappyWithService = "CustomerHappyWithService",
|
|
84
87
|
CustomerHappyWithServiceComment = "CustomerHappyWithServiceComment",
|
|
85
88
|
InstallationRevision = "InstallationRevision",
|
|
86
|
-
InstallRevisionComment = "InstallRevisionComment"
|
|
89
|
+
InstallRevisionComment = "InstallRevisionComment",
|
|
90
|
+
ExternalInternalSelector = "ExternalInternalSelector"
|
|
87
91
|
}
|
|
88
92
|
export interface OutcomeFormOhRetroAuditProperties {
|
|
89
93
|
EntryHoleSealdNeatAndTidyImage: string;
|
|
@@ -110,6 +114,7 @@ export interface OutcomeFormOhRetroAuditProperties {
|
|
|
110
114
|
CustomerHappyWithServiceComment: string;
|
|
111
115
|
InstallationRevision: OutcomeFormOhRetroAuditInstallationRevision;
|
|
112
116
|
InstallRevisionComment: string;
|
|
117
|
+
ExternalInternalSelector: OutcomeFormOhRetroAuditExternalInternalSelector;
|
|
113
118
|
}
|
|
114
119
|
export declare class OutcomeFormOhRetroAudit extends OdinRecord<OutcomeFormOhRetroAuditProperties> {
|
|
115
120
|
entity: 'FieldServiceModule:OhRetroAudit';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_OH_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_CREATED = exports.OutcomeFormOhRetroAudit = exports.OutcomeFormOhRetroAuditPropertyKeys = exports.OutcomeFormOhRetroAuditInstallationRevision = exports.OutcomeFormOhRetroAuditCustomerHappyWithService = exports.OutcomeFormOhRetroAuditWasteRemovedImage = exports.OutcomeFormOhRetroAuditWasteRemoved = exports.OutcomeFormOhRetroAuditONTWallMounted = exports.OutcomeFormOhRetroAuditInternalCablingSecured = exports.OutcomeFormOhRetroAuditBestLocationRouterAdvice = exports.OutcomeFormOhRetroAuditEntryHoleSealdNeatAndTidy = exports.OutcomeFormOhRetroAuditExternalBoxMountedNeatAndTidy = exports.OutcomeFormOhRetroAuditCableCleated = exports.OutcomeFormOhRetroAuditCorrectFixingApplied = exports.OutcomeFormOhRetroAuditDropCableInstalled = exports.OutcomeFormOhRetroAuditPreClimbCheckCarriedOut = exports.OutcomeFormOhRetroAuditAccessInsideProperty = void 0;
|
|
3
|
+
exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_OH_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_OH_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_OH_RETRO_AUDIT_CREATED = exports.OutcomeFormOhRetroAudit = exports.OutcomeFormOhRetroAuditPropertyKeys = exports.OutcomeFormOhRetroAuditExternalInternalSelector = exports.OutcomeFormOhRetroAuditInstallationRevision = exports.OutcomeFormOhRetroAuditCustomerHappyWithService = exports.OutcomeFormOhRetroAuditWasteRemovedImage = exports.OutcomeFormOhRetroAuditWasteRemoved = exports.OutcomeFormOhRetroAuditONTWallMounted = exports.OutcomeFormOhRetroAuditInternalCablingSecured = exports.OutcomeFormOhRetroAuditBestLocationRouterAdvice = exports.OutcomeFormOhRetroAuditEntryHoleSealdNeatAndTidy = exports.OutcomeFormOhRetroAuditExternalBoxMountedNeatAndTidy = exports.OutcomeFormOhRetroAuditCableCleated = exports.OutcomeFormOhRetroAuditCorrectFixingApplied = exports.OutcomeFormOhRetroAuditDropCableInstalled = exports.OutcomeFormOhRetroAuditPreClimbCheckCarriedOut = exports.OutcomeFormOhRetroAuditAccessInsideProperty = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
5
|
var OutcomeFormOhRetroAuditAccessInsideProperty;
|
|
6
6
|
(function (OutcomeFormOhRetroAuditAccessInsideProperty) {
|
|
@@ -73,12 +73,16 @@ var OutcomeFormOhRetroAuditInstallationRevision;
|
|
|
73
73
|
OutcomeFormOhRetroAuditInstallationRevision["YES"] = "YES";
|
|
74
74
|
OutcomeFormOhRetroAuditInstallationRevision["NO"] = "NO";
|
|
75
75
|
})(OutcomeFormOhRetroAuditInstallationRevision = exports.OutcomeFormOhRetroAuditInstallationRevision || (exports.OutcomeFormOhRetroAuditInstallationRevision = {}));
|
|
76
|
+
var OutcomeFormOhRetroAuditExternalInternalSelector;
|
|
77
|
+
(function (OutcomeFormOhRetroAuditExternalInternalSelector) {
|
|
78
|
+
OutcomeFormOhRetroAuditExternalInternalSelector["EXTERNAL_INSTALLATION"] = "EXTERNAL_INSTALLATION";
|
|
79
|
+
OutcomeFormOhRetroAuditExternalInternalSelector["INTERNAL_INSTALLATION"] = "INTERNAL_INSTALLATION";
|
|
80
|
+
})(OutcomeFormOhRetroAuditExternalInternalSelector = exports.OutcomeFormOhRetroAuditExternalInternalSelector || (exports.OutcomeFormOhRetroAuditExternalInternalSelector = {}));
|
|
76
81
|
var OutcomeFormOhRetroAuditPropertyKeys;
|
|
77
82
|
(function (OutcomeFormOhRetroAuditPropertyKeys) {
|
|
78
83
|
OutcomeFormOhRetroAuditPropertyKeys["EntryHoleSealdNeatAndTidyImage"] = "EntryHoleSealdNeatAndTidyImage";
|
|
79
84
|
OutcomeFormOhRetroAuditPropertyKeys["AccessInsideProperty"] = "AccessInsideProperty";
|
|
80
85
|
OutcomeFormOhRetroAuditPropertyKeys["DropCableInstalledImage"] = "DropCableInstalledImage";
|
|
81
|
-
OutcomeFormOhRetroAuditPropertyKeys["ExternalInternalSelector"] = "External/InternalSelector";
|
|
82
86
|
OutcomeFormOhRetroAuditPropertyKeys["PreClimbCheckCarriedOut"] = "PreClimbCheckCarriedOut";
|
|
83
87
|
OutcomeFormOhRetroAuditPropertyKeys["PreClimbCheckCarriedOutImage"] = "PreClimbCheckCarriedOutImage";
|
|
84
88
|
OutcomeFormOhRetroAuditPropertyKeys["DropCableInstalled"] = "DropCableInstalled";
|
|
@@ -100,6 +104,7 @@ var OutcomeFormOhRetroAuditPropertyKeys;
|
|
|
100
104
|
OutcomeFormOhRetroAuditPropertyKeys["CustomerHappyWithServiceComment"] = "CustomerHappyWithServiceComment";
|
|
101
105
|
OutcomeFormOhRetroAuditPropertyKeys["InstallationRevision"] = "InstallationRevision";
|
|
102
106
|
OutcomeFormOhRetroAuditPropertyKeys["InstallRevisionComment"] = "InstallRevisionComment";
|
|
107
|
+
OutcomeFormOhRetroAuditPropertyKeys["ExternalInternalSelector"] = "ExternalInternalSelector";
|
|
103
108
|
})(OutcomeFormOhRetroAuditPropertyKeys = exports.OutcomeFormOhRetroAuditPropertyKeys || (exports.OutcomeFormOhRetroAuditPropertyKeys = {}));
|
|
104
109
|
class OutcomeFormOhRetroAudit extends core_1.OdinRecord {
|
|
105
110
|
}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { OdinRecord, OdinLink, LinkedOdinRecord } from '@d19n/odin-types/dist/core';
|
|
2
2
|
import { FileProperties } from './File';
|
|
3
3
|
import { NoteProperties } from './Note';
|
|
4
|
+
export declare enum OutcomeFormUgRetroAuditExternalInternalSelector {
|
|
5
|
+
EXTERNAL_INSTALLATION = "EXTERNAL_INSTALLATION",
|
|
6
|
+
INTERNAL_INSTALLATION = "INTERNAL_INSTALLATION"
|
|
7
|
+
}
|
|
4
8
|
export declare enum OutcomeFormUgRetroAuditCable300mmAway {
|
|
5
9
|
YES = "YES",
|
|
6
10
|
NO = "NO"
|
|
@@ -46,7 +50,7 @@ export declare enum OutcomeFormUgRetroAuditInstallationRevision {
|
|
|
46
50
|
NO = "NO"
|
|
47
51
|
}
|
|
48
52
|
export declare enum OutcomeFormUgRetroAuditPropertyKeys {
|
|
49
|
-
ExternalInternalSelector = "
|
|
53
|
+
ExternalInternalSelector = "ExternalInternalSelector",
|
|
50
54
|
Cable300mmAway = "Cable300mmAway",
|
|
51
55
|
Cable300mmAwayImage = "Cable300mmAwayImage",
|
|
52
56
|
CableCleated = "CableCleated",
|
|
@@ -69,6 +73,7 @@ export declare enum OutcomeFormUgRetroAuditPropertyKeys {
|
|
|
69
73
|
InstallRevisionComment = "InstallRevisionComment"
|
|
70
74
|
}
|
|
71
75
|
export interface OutcomeFormUgRetroAuditProperties {
|
|
76
|
+
ExternalInternalSelector: OutcomeFormUgRetroAuditExternalInternalSelector;
|
|
72
77
|
Cable300mmAway: OutcomeFormUgRetroAuditCable300mmAway;
|
|
73
78
|
Cable300mmAwayImage: string;
|
|
74
79
|
CableCleated: OutcomeFormUgRetroAuditCableCleated;
|
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_UG_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_CREATED = exports.OutcomeFormUgRetroAudit = exports.OutcomeFormUgRetroAuditPropertyKeys = exports.OutcomeFormUgRetroAuditInstallationRevision = exports.OutcomeFormUgRetroAuditCustomerHappyWithService = exports.OutcomeFormUgRetroAuditWasteRemoved = exports.OutcomeFormUgRetroAuditONTWallMounted = exports.OutcomeFormUgRetroAuditInternalCablingSecured = exports.OutcomeFormUgRetroAuditBestLocationRouterAdvice = exports.OutcomeFormUgRetroAuditAccessInsideProperty = exports.OutcomeFormUgRetroAuditEntryHoleSealdNeatAndTidy = exports.OutcomeFormUgRetroAuditExternalBoxMountedNeatAndTidy = exports.OutcomeFormUgRetroAuditCableCleated = exports.OutcomeFormUgRetroAuditCable300mmAway = void 0;
|
|
3
|
+
exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_UG_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_CREATED = exports.OutcomeFormUgRetroAudit = exports.OutcomeFormUgRetroAuditPropertyKeys = exports.OutcomeFormUgRetroAuditInstallationRevision = exports.OutcomeFormUgRetroAuditCustomerHappyWithService = exports.OutcomeFormUgRetroAuditWasteRemoved = exports.OutcomeFormUgRetroAuditONTWallMounted = exports.OutcomeFormUgRetroAuditInternalCablingSecured = exports.OutcomeFormUgRetroAuditBestLocationRouterAdvice = exports.OutcomeFormUgRetroAuditAccessInsideProperty = exports.OutcomeFormUgRetroAuditEntryHoleSealdNeatAndTidy = exports.OutcomeFormUgRetroAuditExternalBoxMountedNeatAndTidy = exports.OutcomeFormUgRetroAuditCableCleated = exports.OutcomeFormUgRetroAuditCable300mmAway = exports.OutcomeFormUgRetroAuditExternalInternalSelector = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
|
+
var OutcomeFormUgRetroAuditExternalInternalSelector;
|
|
6
|
+
(function (OutcomeFormUgRetroAuditExternalInternalSelector) {
|
|
7
|
+
OutcomeFormUgRetroAuditExternalInternalSelector["EXTERNAL_INSTALLATION"] = "EXTERNAL_INSTALLATION";
|
|
8
|
+
OutcomeFormUgRetroAuditExternalInternalSelector["INTERNAL_INSTALLATION"] = "INTERNAL_INSTALLATION";
|
|
9
|
+
})(OutcomeFormUgRetroAuditExternalInternalSelector = exports.OutcomeFormUgRetroAuditExternalInternalSelector || (exports.OutcomeFormUgRetroAuditExternalInternalSelector = {}));
|
|
5
10
|
var OutcomeFormUgRetroAuditCable300mmAway;
|
|
6
11
|
(function (OutcomeFormUgRetroAuditCable300mmAway) {
|
|
7
12
|
OutcomeFormUgRetroAuditCable300mmAway["YES"] = "YES";
|
|
@@ -59,7 +64,7 @@ var OutcomeFormUgRetroAuditInstallationRevision;
|
|
|
59
64
|
})(OutcomeFormUgRetroAuditInstallationRevision = exports.OutcomeFormUgRetroAuditInstallationRevision || (exports.OutcomeFormUgRetroAuditInstallationRevision = {}));
|
|
60
65
|
var OutcomeFormUgRetroAuditPropertyKeys;
|
|
61
66
|
(function (OutcomeFormUgRetroAuditPropertyKeys) {
|
|
62
|
-
OutcomeFormUgRetroAuditPropertyKeys["ExternalInternalSelector"] = "
|
|
67
|
+
OutcomeFormUgRetroAuditPropertyKeys["ExternalInternalSelector"] = "ExternalInternalSelector";
|
|
63
68
|
OutcomeFormUgRetroAuditPropertyKeys["Cable300mmAway"] = "Cable300mmAway";
|
|
64
69
|
OutcomeFormUgRetroAuditPropertyKeys["Cable300mmAwayImage"] = "Cable300mmAwayImage";
|
|
65
70
|
OutcomeFormUgRetroAuditPropertyKeys["CableCleated"] = "CableCleated";
|
|
@@ -19,11 +19,11 @@ export declare enum ReleaseNoteKnowledgeArticleModuleName {
|
|
|
19
19
|
CRM_MODULE = "CRM_MODULE"
|
|
20
20
|
}
|
|
21
21
|
export declare enum ReleaseNoteKnowledgeArticleCategory {
|
|
22
|
-
|
|
23
|
-
BILLING_PROCESS = "BILLING_PROCESS",
|
|
22
|
+
SALES_PROCESS = "SALES_PROCESS",
|
|
24
23
|
SUPPORT_PROCESS = "SUPPORT_PROCESS",
|
|
25
24
|
SOLUTIONS_PROCESS = "SOLUTIONS_PROCESS",
|
|
26
|
-
|
|
25
|
+
BILLING_PROCESS = "BILLING_PROCESS",
|
|
26
|
+
LEAD_PROCESS = "LEAD_PROCESS"
|
|
27
27
|
}
|
|
28
28
|
export declare enum ReleaseNoteKnowledgeArticlePropertyKeys {
|
|
29
29
|
Status = "Status",
|
|
@@ -22,11 +22,11 @@ var ReleaseNoteKnowledgeArticleModuleName;
|
|
|
22
22
|
})(ReleaseNoteKnowledgeArticleModuleName = exports.ReleaseNoteKnowledgeArticleModuleName || (exports.ReleaseNoteKnowledgeArticleModuleName = {}));
|
|
23
23
|
var ReleaseNoteKnowledgeArticleCategory;
|
|
24
24
|
(function (ReleaseNoteKnowledgeArticleCategory) {
|
|
25
|
-
ReleaseNoteKnowledgeArticleCategory["
|
|
26
|
-
ReleaseNoteKnowledgeArticleCategory["BILLING_PROCESS"] = "BILLING_PROCESS";
|
|
25
|
+
ReleaseNoteKnowledgeArticleCategory["SALES_PROCESS"] = "SALES_PROCESS";
|
|
27
26
|
ReleaseNoteKnowledgeArticleCategory["SUPPORT_PROCESS"] = "SUPPORT_PROCESS";
|
|
28
27
|
ReleaseNoteKnowledgeArticleCategory["SOLUTIONS_PROCESS"] = "SOLUTIONS_PROCESS";
|
|
29
|
-
ReleaseNoteKnowledgeArticleCategory["
|
|
28
|
+
ReleaseNoteKnowledgeArticleCategory["BILLING_PROCESS"] = "BILLING_PROCESS";
|
|
29
|
+
ReleaseNoteKnowledgeArticleCategory["LEAD_PROCESS"] = "LEAD_PROCESS";
|
|
30
30
|
})(ReleaseNoteKnowledgeArticleCategory = exports.ReleaseNoteKnowledgeArticleCategory || (exports.ReleaseNoteKnowledgeArticleCategory = {}));
|
|
31
31
|
var ReleaseNoteKnowledgeArticlePropertyKeys;
|
|
32
32
|
(function (ReleaseNoteKnowledgeArticlePropertyKeys) {
|
|
@@ -5,6 +5,10 @@ import { NoteProperties } from './Note';
|
|
|
5
5
|
export declare enum UgRetroAuditEntityTypes {
|
|
6
6
|
OUTCOME_FORM = "OUTCOME_FORM"
|
|
7
7
|
}
|
|
8
|
+
export declare enum UgRetroAuditExternalInternalSelector {
|
|
9
|
+
EXTERNAL_INSTALLATION = "EXTERNAL_INSTALLATION",
|
|
10
|
+
INTERNAL_INSTALLATION = "INTERNAL_INSTALLATION"
|
|
11
|
+
}
|
|
8
12
|
export declare enum UgRetroAuditCable300mmAway {
|
|
9
13
|
YES = "YES",
|
|
10
14
|
NO = "NO"
|
|
@@ -50,7 +54,7 @@ export declare enum UgRetroAuditInstallationRevision {
|
|
|
50
54
|
NO = "NO"
|
|
51
55
|
}
|
|
52
56
|
export declare enum UgRetroAuditPropertyKeys {
|
|
53
|
-
ExternalInternalSelector = "
|
|
57
|
+
ExternalInternalSelector = "ExternalInternalSelector",
|
|
54
58
|
Cable300mmAway = "Cable300mmAway",
|
|
55
59
|
Cable300mmAwayImage = "Cable300mmAwayImage",
|
|
56
60
|
CableCleated = "CableCleated",
|
|
@@ -73,6 +77,7 @@ export declare enum UgRetroAuditPropertyKeys {
|
|
|
73
77
|
InstallRevisionComment = "InstallRevisionComment"
|
|
74
78
|
}
|
|
75
79
|
export interface UgRetroAuditProperties {
|
|
80
|
+
ExternalInternalSelector: UgRetroAuditExternalInternalSelector;
|
|
76
81
|
Cable300mmAway: UgRetroAuditCable300mmAway;
|
|
77
82
|
Cable300mmAwayImage: string;
|
|
78
83
|
CableCleated: UgRetroAuditCableCleated;
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_UG_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_CREATED = exports.UgRetroAudit = exports.UgRetroAuditPropertyKeys = exports.UgRetroAuditInstallationRevision = exports.UgRetroAuditCustomerHappyWithService = exports.UgRetroAuditWasteRemoved = exports.UgRetroAuditONTWallMounted = exports.UgRetroAuditInternalCablingSecured = exports.UgRetroAuditBestLocationRouterAdvice = exports.UgRetroAuditAccessInsideProperty = exports.UgRetroAuditEntryHoleSealdNeatAndTidy = exports.UgRetroAuditExternalBoxMountedNeatAndTidy = exports.UgRetroAuditCableCleated = exports.UgRetroAuditCable300mmAway = exports.UgRetroAuditEntityTypes = void 0;
|
|
3
|
+
exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_NOTE_CREATED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_DELETED = exports.ROUTING_KEY_LINK_UG_RETRO_AUDIT_FILE_CREATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_DELETED = exports.ROUTING_KEY_UG_RETRO_AUDIT_UPDATED = exports.ROUTING_KEY_UG_RETRO_AUDIT_CREATED = exports.UgRetroAudit = exports.UgRetroAuditPropertyKeys = exports.UgRetroAuditInstallationRevision = exports.UgRetroAuditCustomerHappyWithService = exports.UgRetroAuditWasteRemoved = exports.UgRetroAuditONTWallMounted = exports.UgRetroAuditInternalCablingSecured = exports.UgRetroAuditBestLocationRouterAdvice = exports.UgRetroAuditAccessInsideProperty = exports.UgRetroAuditEntryHoleSealdNeatAndTidy = exports.UgRetroAuditExternalBoxMountedNeatAndTidy = exports.UgRetroAuditCableCleated = exports.UgRetroAuditCable300mmAway = exports.UgRetroAuditExternalInternalSelector = exports.UgRetroAuditEntityTypes = void 0;
|
|
4
4
|
const core_1 = require("@d19n/odin-types/dist/core");
|
|
5
5
|
var UgRetroAuditEntityTypes;
|
|
6
6
|
(function (UgRetroAuditEntityTypes) {
|
|
7
7
|
UgRetroAuditEntityTypes["OUTCOME_FORM"] = "OUTCOME_FORM";
|
|
8
8
|
})(UgRetroAuditEntityTypes = exports.UgRetroAuditEntityTypes || (exports.UgRetroAuditEntityTypes = {}));
|
|
9
|
+
var UgRetroAuditExternalInternalSelector;
|
|
10
|
+
(function (UgRetroAuditExternalInternalSelector) {
|
|
11
|
+
UgRetroAuditExternalInternalSelector["EXTERNAL_INSTALLATION"] = "EXTERNAL_INSTALLATION";
|
|
12
|
+
UgRetroAuditExternalInternalSelector["INTERNAL_INSTALLATION"] = "INTERNAL_INSTALLATION";
|
|
13
|
+
})(UgRetroAuditExternalInternalSelector = exports.UgRetroAuditExternalInternalSelector || (exports.UgRetroAuditExternalInternalSelector = {}));
|
|
9
14
|
var UgRetroAuditCable300mmAway;
|
|
10
15
|
(function (UgRetroAuditCable300mmAway) {
|
|
11
16
|
UgRetroAuditCable300mmAway["YES"] = "YES";
|
|
@@ -63,7 +68,7 @@ var UgRetroAuditInstallationRevision;
|
|
|
63
68
|
})(UgRetroAuditInstallationRevision = exports.UgRetroAuditInstallationRevision || (exports.UgRetroAuditInstallationRevision = {}));
|
|
64
69
|
var UgRetroAuditPropertyKeys;
|
|
65
70
|
(function (UgRetroAuditPropertyKeys) {
|
|
66
|
-
UgRetroAuditPropertyKeys["ExternalInternalSelector"] = "
|
|
71
|
+
UgRetroAuditPropertyKeys["ExternalInternalSelector"] = "ExternalInternalSelector";
|
|
67
72
|
UgRetroAuditPropertyKeys["Cable300mmAway"] = "Cable300mmAway";
|
|
68
73
|
UgRetroAuditPropertyKeys["Cable300mmAwayImage"] = "Cable300mmAwayImage";
|
|
69
74
|
UgRetroAuditPropertyKeys["CableCleated"] = "CableCleated";
|
|
@@ -19,11 +19,11 @@ export declare enum UserGuideKnowledgeArticleModuleName {
|
|
|
19
19
|
CRM_MODULE = "CRM_MODULE"
|
|
20
20
|
}
|
|
21
21
|
export declare enum UserGuideKnowledgeArticleCategory {
|
|
22
|
-
|
|
23
|
-
BILLING_PROCESS = "BILLING_PROCESS",
|
|
22
|
+
SALES_PROCESS = "SALES_PROCESS",
|
|
24
23
|
SUPPORT_PROCESS = "SUPPORT_PROCESS",
|
|
25
24
|
SOLUTIONS_PROCESS = "SOLUTIONS_PROCESS",
|
|
26
|
-
|
|
25
|
+
BILLING_PROCESS = "BILLING_PROCESS",
|
|
26
|
+
LEAD_PROCESS = "LEAD_PROCESS"
|
|
27
27
|
}
|
|
28
28
|
export declare enum UserGuideKnowledgeArticlePropertyKeys {
|
|
29
29
|
Status = "Status",
|
|
@@ -49,6 +49,7 @@ export interface UserGuideKnowledgeArticleProperties {
|
|
|
49
49
|
Tags: string;
|
|
50
50
|
JsonContent: string;
|
|
51
51
|
Category: UserGuideKnowledgeArticleCategory;
|
|
52
|
+
Version: string;
|
|
52
53
|
}
|
|
53
54
|
export declare class UserGuideKnowledgeArticle extends OdinRecord<UserGuideKnowledgeArticleProperties> {
|
|
54
55
|
entity: 'SupportModule:KnowledgeArticle';
|
|
@@ -22,11 +22,11 @@ var UserGuideKnowledgeArticleModuleName;
|
|
|
22
22
|
})(UserGuideKnowledgeArticleModuleName = exports.UserGuideKnowledgeArticleModuleName || (exports.UserGuideKnowledgeArticleModuleName = {}));
|
|
23
23
|
var UserGuideKnowledgeArticleCategory;
|
|
24
24
|
(function (UserGuideKnowledgeArticleCategory) {
|
|
25
|
-
UserGuideKnowledgeArticleCategory["
|
|
26
|
-
UserGuideKnowledgeArticleCategory["BILLING_PROCESS"] = "BILLING_PROCESS";
|
|
25
|
+
UserGuideKnowledgeArticleCategory["SALES_PROCESS"] = "SALES_PROCESS";
|
|
27
26
|
UserGuideKnowledgeArticleCategory["SUPPORT_PROCESS"] = "SUPPORT_PROCESS";
|
|
28
27
|
UserGuideKnowledgeArticleCategory["SOLUTIONS_PROCESS"] = "SOLUTIONS_PROCESS";
|
|
29
|
-
UserGuideKnowledgeArticleCategory["
|
|
28
|
+
UserGuideKnowledgeArticleCategory["BILLING_PROCESS"] = "BILLING_PROCESS";
|
|
29
|
+
UserGuideKnowledgeArticleCategory["LEAD_PROCESS"] = "LEAD_PROCESS";
|
|
30
30
|
})(UserGuideKnowledgeArticleCategory = exports.UserGuideKnowledgeArticleCategory || (exports.UserGuideKnowledgeArticleCategory = {}));
|
|
31
31
|
var UserGuideKnowledgeArticlePropertyKeys;
|
|
32
32
|
(function (UserGuideKnowledgeArticlePropertyKeys) {
|
package/dist/types-v1/Types.d.ts
CHANGED
|
@@ -20,9 +20,9 @@ export declare enum OdinEntities {
|
|
|
20
20
|
MESSAGE = "NotificationModule:Message",
|
|
21
21
|
PHONE_NUMBER = "CrmModule:PhoneNumber",
|
|
22
22
|
EXCHANGE = "ProjectModule:Exchange",
|
|
23
|
+
OH_RETRO_AUDIT = "FieldServiceModule:OhRetroAudit",
|
|
23
24
|
LINEAR_ISSUE = "SupportModule:LinearIssue",
|
|
24
25
|
NETOMNIA_INSTALL_VERIFICATION = "FieldServiceModule:NetomniaInstallVerification",
|
|
25
|
-
UG_RETRO_AUDIT = "FieldServiceModule:UgRetroAudit",
|
|
26
26
|
KNOWLEDGE_ARTICLE = "SupportModule:KnowledgeArticle",
|
|
27
27
|
EMAIL_TEMPLATE = "NotificationModule:EmailTemplate",
|
|
28
28
|
DASHBOARD = "FieldServiceModule:Dashboard",
|
|
@@ -34,7 +34,6 @@ export declare enum OdinEntities {
|
|
|
34
34
|
TEAM = "IdentityModule:Team",
|
|
35
35
|
OH_EXTERNAL_AUDIT = "FieldServiceModule:OhExternalAudit",
|
|
36
36
|
OLT_SNAPSHOT = "ServiceModule:OltSnapshot",
|
|
37
|
-
OH_RETRO_AUDIT = "FieldServiceModule:OhRetroAudit",
|
|
38
37
|
WORK_ORDER_REMEDIATION_VIEW = "FieldServiceModule:WorkOrderRemediationView",
|
|
39
38
|
NETOMNIA_FTTH1_STAGE_INSTALL_AUDIT = "FieldServiceModule:NetomniaFtth1StageInstallAudit",
|
|
40
39
|
QUEUE_CHANGE = "SupportModule:QueueChange",
|
|
@@ -85,8 +84,8 @@ export declare enum OdinEntities {
|
|
|
85
84
|
IMPERSONATION_TRACKER = "IdentityModule:ImpersonationTracker",
|
|
86
85
|
CUSTOMER_PHONE_PORTING = "ServiceModule:CustomerPhonePorting",
|
|
87
86
|
FINGERPRINT = "CrmModule:Fingerprint",
|
|
88
|
-
PAYMENT_METHOD = "BillingModule:PaymentMethod",
|
|
89
87
|
BILLING_REQUEST = "BillingModule:BillingRequest",
|
|
88
|
+
PAYMENT_METHOD = "BillingModule:PaymentMethod",
|
|
90
89
|
BILLING_ADJUSTMENT = "OrderModule:BillingAdjustment",
|
|
91
90
|
VENDOR = "ProductModule:Vendor",
|
|
92
91
|
MOBILE_SUBSCRIBER = "ServiceModule:MobileSubscriber",
|
|
@@ -129,6 +128,7 @@ export declare enum OdinEntities {
|
|
|
129
128
|
CONTRACT_BUY_OUT = "OrderModule:ContractBuyOut",
|
|
130
129
|
REMEDIATION_OUTCOME_FORM = "FieldServiceModule:RemediationOutcomeForm",
|
|
131
130
|
WORK_ORDER = "FieldServiceModule:WorkOrder",
|
|
131
|
+
UG_RETRO_AUDIT = "FieldServiceModule:UgRetroAudit",
|
|
132
132
|
ORDER_ITEM = "OrderModule:OrderItem",
|
|
133
133
|
TRANSACTION = "BillingModule:Transaction",
|
|
134
134
|
INVOICE = "BillingModule:Invoice",
|
package/dist/types-v1/Types.js
CHANGED
|
@@ -24,9 +24,9 @@ var OdinEntities;
|
|
|
24
24
|
OdinEntities["MESSAGE"] = "NotificationModule:Message";
|
|
25
25
|
OdinEntities["PHONE_NUMBER"] = "CrmModule:PhoneNumber";
|
|
26
26
|
OdinEntities["EXCHANGE"] = "ProjectModule:Exchange";
|
|
27
|
+
OdinEntities["OH_RETRO_AUDIT"] = "FieldServiceModule:OhRetroAudit";
|
|
27
28
|
OdinEntities["LINEAR_ISSUE"] = "SupportModule:LinearIssue";
|
|
28
29
|
OdinEntities["NETOMNIA_INSTALL_VERIFICATION"] = "FieldServiceModule:NetomniaInstallVerification";
|
|
29
|
-
OdinEntities["UG_RETRO_AUDIT"] = "FieldServiceModule:UgRetroAudit";
|
|
30
30
|
OdinEntities["KNOWLEDGE_ARTICLE"] = "SupportModule:KnowledgeArticle";
|
|
31
31
|
OdinEntities["EMAIL_TEMPLATE"] = "NotificationModule:EmailTemplate";
|
|
32
32
|
OdinEntities["DASHBOARD"] = "FieldServiceModule:Dashboard";
|
|
@@ -38,7 +38,6 @@ var OdinEntities;
|
|
|
38
38
|
OdinEntities["TEAM"] = "IdentityModule:Team";
|
|
39
39
|
OdinEntities["OH_EXTERNAL_AUDIT"] = "FieldServiceModule:OhExternalAudit";
|
|
40
40
|
OdinEntities["OLT_SNAPSHOT"] = "ServiceModule:OltSnapshot";
|
|
41
|
-
OdinEntities["OH_RETRO_AUDIT"] = "FieldServiceModule:OhRetroAudit";
|
|
42
41
|
OdinEntities["WORK_ORDER_REMEDIATION_VIEW"] = "FieldServiceModule:WorkOrderRemediationView";
|
|
43
42
|
OdinEntities["NETOMNIA_FTTH1_STAGE_INSTALL_AUDIT"] = "FieldServiceModule:NetomniaFtth1StageInstallAudit";
|
|
44
43
|
OdinEntities["QUEUE_CHANGE"] = "SupportModule:QueueChange";
|
|
@@ -89,8 +88,8 @@ var OdinEntities;
|
|
|
89
88
|
OdinEntities["IMPERSONATION_TRACKER"] = "IdentityModule:ImpersonationTracker";
|
|
90
89
|
OdinEntities["CUSTOMER_PHONE_PORTING"] = "ServiceModule:CustomerPhonePorting";
|
|
91
90
|
OdinEntities["FINGERPRINT"] = "CrmModule:Fingerprint";
|
|
92
|
-
OdinEntities["PAYMENT_METHOD"] = "BillingModule:PaymentMethod";
|
|
93
91
|
OdinEntities["BILLING_REQUEST"] = "BillingModule:BillingRequest";
|
|
92
|
+
OdinEntities["PAYMENT_METHOD"] = "BillingModule:PaymentMethod";
|
|
94
93
|
OdinEntities["BILLING_ADJUSTMENT"] = "OrderModule:BillingAdjustment";
|
|
95
94
|
OdinEntities["VENDOR"] = "ProductModule:Vendor";
|
|
96
95
|
OdinEntities["MOBILE_SUBSCRIBER"] = "ServiceModule:MobileSubscriber";
|
|
@@ -133,6 +132,7 @@ var OdinEntities;
|
|
|
133
132
|
OdinEntities["CONTRACT_BUY_OUT"] = "OrderModule:ContractBuyOut";
|
|
134
133
|
OdinEntities["REMEDIATION_OUTCOME_FORM"] = "FieldServiceModule:RemediationOutcomeForm";
|
|
135
134
|
OdinEntities["WORK_ORDER"] = "FieldServiceModule:WorkOrder";
|
|
135
|
+
OdinEntities["UG_RETRO_AUDIT"] = "FieldServiceModule:UgRetroAudit";
|
|
136
136
|
OdinEntities["ORDER_ITEM"] = "OrderModule:OrderItem";
|
|
137
137
|
OdinEntities["TRANSACTION"] = "BillingModule:Transaction";
|
|
138
138
|
OdinEntities["INVOICE"] = "BillingModule:Invoice";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@d19n/youfibre-odin-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.197",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "@d19n",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"typescript": "4.8.4"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@d19n/odin-sdk-generator": "^3.0.
|
|
14
|
+
"@d19n/odin-sdk-generator": "^3.0.98",
|
|
15
15
|
"@d19n/odin-types": "^3.0.3"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
@@ -27,6 +27,7 @@ OdinRecordLinkCreatedEvent
|
|
|
27
27
|
// An Action is a single transaction that changes the properties of one or more objects.
|
|
28
28
|
interface CancelBillingRequestProperties {
|
|
29
29
|
Status: string,
|
|
30
|
+
GcStatus: string,
|
|
30
31
|
}
|
|
31
32
|
export class CancelBillingRequestDto extends OdinRecordUpdateDto<CancelBillingRequestProperties> {
|
|
32
33
|
public readonly actionName: string = 'CancelBillingRequest';
|
|
@@ -499,7 +499,6 @@ export class OhInstallationAuditDto extends OdinRecordCreateDto<OhInstallationAu
|
|
|
499
499
|
export interface OhInstallationAuditMessage extends OdinRecordCreatedEvent<OhInstallationAuditDto, OhInstallationAuditProperties> {}
|
|
500
500
|
|
|
501
501
|
interface UgRetroAuditProperties {
|
|
502
|
-
ExternalInternalSelector: string,
|
|
503
502
|
Cable300mmAway?: string,
|
|
504
503
|
Cable300mmAwayImage?: undefined,
|
|
505
504
|
CableCleated?: string,
|
|
@@ -590,7 +589,6 @@ export class UgInProgressAuditDto extends OdinRecordCreateDto<UgInProgressAuditP
|
|
|
590
589
|
export interface UgInProgressAuditMessage extends OdinRecordCreatedEvent<UgInProgressAuditDto, UgInProgressAuditProperties> {}
|
|
591
590
|
|
|
592
591
|
interface OhRetroAuditProperties {
|
|
593
|
-
ExternalInternalSelector: string,
|
|
594
592
|
InstallationRevision: string,
|
|
595
593
|
PreClimbCheckCarriedOut?: string,
|
|
596
594
|
PreClimbCheckCarriedOutImage?: undefined,
|
|
@@ -20,6 +20,14 @@ export enum BillingAdjustmentEntityTypes {
|
|
|
20
20
|
DEFAULT = 'DEFAULT',
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
+
export enum BillingAdjustmentDiscountType {
|
|
24
|
+
AMOUNT = 'AMOUNT',
|
|
25
|
+
PERCENT = 'PERCENT',
|
|
26
|
+
}
|
|
27
|
+
export enum BillingAdjustmentProrationType {
|
|
28
|
+
CHARGE = 'CHARGE',
|
|
29
|
+
CREDIT = 'CREDIT',
|
|
30
|
+
}
|
|
23
31
|
export enum BillingAdjustmentReason {
|
|
24
32
|
BILLING_DAY_ADJUSMENT_LEGACY = 'BILLING_DAY_ADJUSTMENT',
|
|
25
33
|
BILLING_DATE_CHANGE = 'BILLING_DATE_CHANGE',
|
|
@@ -35,51 +43,43 @@ export enum BillingAdjustmentReason {
|
|
|
35
43
|
SALES_MISSELLING_ADJUSTMENT = 'SALES_MISSELLING_ADJUSTMENT',
|
|
36
44
|
OUTAGE_COMPENSATION = 'OUTAGE_COMPENSATION',
|
|
37
45
|
}
|
|
38
|
-
export enum BillingAdjustmentDiscountType {
|
|
39
|
-
AMOUNT = 'AMOUNT',
|
|
40
|
-
PERCENT = 'PERCENT',
|
|
41
|
-
}
|
|
42
|
-
export enum BillingAdjustmentProrationType {
|
|
43
|
-
CHARGE = 'CHARGE',
|
|
44
|
-
CREDIT = 'CREDIT',
|
|
45
|
-
}
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
export enum BillingAdjustmentPropertyKeys {
|
|
49
|
-
|
|
50
|
-
Reason = 'Reason',
|
|
49
|
+
Description = 'Description',
|
|
51
50
|
DiscountLength = 'DiscountLength',
|
|
52
51
|
DiscountType = 'DiscountType',
|
|
53
52
|
DiscountValue = 'DiscountValue',
|
|
54
|
-
|
|
53
|
+
FreePeriodLength = 'FreePeriodLength',
|
|
55
54
|
ProrationBillableDays = 'ProrationBillableDays',
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
ProrationType = 'ProrationType',
|
|
56
|
+
Reason = 'Reason',
|
|
58
57
|
Source = 'Source',
|
|
58
|
+
Title = 'Title',
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
|
|
62
62
|
export interface BillingAdjustmentProperties {
|
|
63
|
-
//
|
|
64
|
-
|
|
65
|
-
//the billing adjustment reason
|
|
66
|
-
Reason: BillingAdjustmentReason
|
|
63
|
+
//Describe why this billing adjustment being applied
|
|
64
|
+
Description: string
|
|
67
65
|
//the length of the discount
|
|
68
66
|
DiscountLength: number
|
|
69
67
|
//the type of discount
|
|
70
68
|
DiscountType: BillingAdjustmentDiscountType
|
|
71
69
|
//the value of the discount to be applied
|
|
72
70
|
DiscountValue: number
|
|
73
|
-
//
|
|
74
|
-
|
|
71
|
+
//The number of future invoices that should be free of charge
|
|
72
|
+
FreePeriodLength: number
|
|
75
73
|
//The number of days being prorated
|
|
76
74
|
ProrationBillableDays: number
|
|
77
|
-
//
|
|
78
|
-
|
|
79
|
-
//
|
|
80
|
-
|
|
75
|
+
//proration type charge or credit
|
|
76
|
+
ProrationType: BillingAdjustmentProrationType
|
|
77
|
+
//the billing adjustment reason
|
|
78
|
+
Reason: BillingAdjustmentReason
|
|
81
79
|
//Source of payment date update
|
|
82
80
|
Source: string
|
|
81
|
+
//Billing Adjustment Title
|
|
82
|
+
Title: string
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
|
|
@@ -36,11 +36,11 @@ export enum KnowledgeArticleModuleName {
|
|
|
36
36
|
CRM_MODULE = 'CRM_MODULE',
|
|
37
37
|
}
|
|
38
38
|
export enum KnowledgeArticleCategory {
|
|
39
|
-
|
|
40
|
-
BILLING_PROCESS = 'BILLING_PROCESS',
|
|
39
|
+
SALES_PROCESS = 'SALES_PROCESS',
|
|
41
40
|
SUPPORT_PROCESS = 'SUPPORT_PROCESS',
|
|
42
41
|
SOLUTIONS_PROCESS = 'SOLUTIONS_PROCESS',
|
|
43
|
-
|
|
42
|
+
BILLING_PROCESS = 'BILLING_PROCESS',
|
|
43
|
+
LEAD_PROCESS = 'LEAD_PROCESS',
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
|
|
@@ -76,13 +76,16 @@ export enum OhRetroAuditInstallationRevision {
|
|
|
76
76
|
YES = 'YES',
|
|
77
77
|
NO = 'NO',
|
|
78
78
|
}
|
|
79
|
+
export enum OhRetroAuditExternalInternalSelector {
|
|
80
|
+
EXTERNAL_INSTALLATION = 'EXTERNAL_INSTALLATION',
|
|
81
|
+
INTERNAL_INSTALLATION = 'INTERNAL_INSTALLATION',
|
|
82
|
+
}
|
|
79
83
|
|
|
80
84
|
|
|
81
85
|
export enum OhRetroAuditPropertyKeys {
|
|
82
86
|
EntryHoleSealdNeatAndTidyImage = 'EntryHoleSealdNeatAndTidyImage',
|
|
83
87
|
AccessInsideProperty = 'AccessInsideProperty',
|
|
84
88
|
DropCableInstalledImage = 'DropCableInstalledImage',
|
|
85
|
-
ExternalInternalSelector = 'External/InternalSelector',
|
|
86
89
|
PreClimbCheckCarriedOut = 'PreClimbCheckCarriedOut',
|
|
87
90
|
PreClimbCheckCarriedOutImage = 'PreClimbCheckCarriedOutImage',
|
|
88
91
|
DropCableInstalled = 'DropCableInstalled',
|
|
@@ -104,6 +107,7 @@ export enum OhRetroAuditPropertyKeys {
|
|
|
104
107
|
CustomerHappyWithServiceComment = 'CustomerHappyWithServiceComment',
|
|
105
108
|
InstallationRevision = 'InstallationRevision',
|
|
106
109
|
InstallRevisionComment = 'InstallRevisionComment',
|
|
110
|
+
ExternalInternalSelector = 'ExternalInternalSelector',
|
|
107
111
|
}
|
|
108
112
|
|
|
109
113
|
|
|
@@ -156,6 +160,8 @@ export interface OhRetroAuditProperties {
|
|
|
156
160
|
InstallationRevision: OhRetroAuditInstallationRevision
|
|
157
161
|
//Write here
|
|
158
162
|
InstallRevisionComment: string
|
|
163
|
+
//Select
|
|
164
|
+
ExternalInternalSelector: OhRetroAuditExternalInternalSelector
|
|
159
165
|
}
|
|
160
166
|
|
|
161
167
|
|
|
@@ -69,6 +69,10 @@ export enum OutcomeFormOhRetroAuditInstallationRevision {
|
|
|
69
69
|
YES = 'YES',
|
|
70
70
|
NO = 'NO',
|
|
71
71
|
}
|
|
72
|
+
export enum OutcomeFormOhRetroAuditExternalInternalSelector {
|
|
73
|
+
EXTERNAL_INSTALLATION = 'EXTERNAL_INSTALLATION',
|
|
74
|
+
INTERNAL_INSTALLATION = 'INTERNAL_INSTALLATION',
|
|
75
|
+
}
|
|
72
76
|
|
|
73
77
|
|
|
74
78
|
|
|
@@ -77,7 +81,6 @@ export enum OutcomeFormOhRetroAuditPropertyKeys {
|
|
|
77
81
|
EntryHoleSealdNeatAndTidyImage = 'EntryHoleSealdNeatAndTidyImage',
|
|
78
82
|
AccessInsideProperty = 'AccessInsideProperty',
|
|
79
83
|
DropCableInstalledImage = 'DropCableInstalledImage',
|
|
80
|
-
ExternalInternalSelector = 'External/InternalSelector',
|
|
81
84
|
PreClimbCheckCarriedOut = 'PreClimbCheckCarriedOut',
|
|
82
85
|
PreClimbCheckCarriedOutImage = 'PreClimbCheckCarriedOutImage',
|
|
83
86
|
DropCableInstalled = 'DropCableInstalled',
|
|
@@ -99,6 +102,7 @@ export enum OutcomeFormOhRetroAuditPropertyKeys {
|
|
|
99
102
|
CustomerHappyWithServiceComment = 'CustomerHappyWithServiceComment',
|
|
100
103
|
InstallationRevision = 'InstallationRevision',
|
|
101
104
|
InstallRevisionComment = 'InstallRevisionComment',
|
|
105
|
+
ExternalInternalSelector = 'ExternalInternalSelector',
|
|
102
106
|
}
|
|
103
107
|
|
|
104
108
|
|
|
@@ -151,6 +155,8 @@ export interface OutcomeFormOhRetroAuditProperties {
|
|
|
151
155
|
InstallationRevision: OutcomeFormOhRetroAuditInstallationRevision
|
|
152
156
|
//Write here
|
|
153
157
|
InstallRevisionComment: string
|
|
158
|
+
//Select
|
|
159
|
+
ExternalInternalSelector: OutcomeFormOhRetroAuditExternalInternalSelector
|
|
154
160
|
}
|
|
155
161
|
|
|
156
162
|
|
|
@@ -12,6 +12,10 @@
|
|
|
12
12
|
import { FileProperties } from './File';
|
|
13
13
|
import { NoteProperties } from './Note';
|
|
14
14
|
|
|
15
|
+
export enum OutcomeFormUgRetroAuditExternalInternalSelector {
|
|
16
|
+
EXTERNAL_INSTALLATION = 'EXTERNAL_INSTALLATION',
|
|
17
|
+
INTERNAL_INSTALLATION = 'INTERNAL_INSTALLATION',
|
|
18
|
+
}
|
|
15
19
|
export enum OutcomeFormUgRetroAuditCable300mmAway {
|
|
16
20
|
YES = 'YES',
|
|
17
21
|
NO = 'NO',
|
|
@@ -61,7 +65,7 @@ export enum OutcomeFormUgRetroAuditInstallationRevision {
|
|
|
61
65
|
|
|
62
66
|
|
|
63
67
|
export enum OutcomeFormUgRetroAuditPropertyKeys {
|
|
64
|
-
ExternalInternalSelector = '
|
|
68
|
+
ExternalInternalSelector = 'ExternalInternalSelector',
|
|
65
69
|
Cable300mmAway = 'Cable300mmAway',
|
|
66
70
|
Cable300mmAwayImage = 'Cable300mmAwayImage',
|
|
67
71
|
CableCleated = 'CableCleated',
|
|
@@ -86,6 +90,8 @@ export enum OutcomeFormUgRetroAuditPropertyKeys {
|
|
|
86
90
|
|
|
87
91
|
|
|
88
92
|
export interface OutcomeFormUgRetroAuditProperties {
|
|
93
|
+
//Select
|
|
94
|
+
ExternalInternalSelector: OutcomeFormUgRetroAuditExternalInternalSelector
|
|
89
95
|
//Select
|
|
90
96
|
Cable300mmAway: OutcomeFormUgRetroAuditCable300mmAway
|
|
91
97
|
//Add image
|
|
@@ -30,11 +30,11 @@ export enum ReleaseNoteKnowledgeArticleModuleName {
|
|
|
30
30
|
CRM_MODULE = 'CRM_MODULE',
|
|
31
31
|
}
|
|
32
32
|
export enum ReleaseNoteKnowledgeArticleCategory {
|
|
33
|
-
|
|
34
|
-
BILLING_PROCESS = 'BILLING_PROCESS',
|
|
33
|
+
SALES_PROCESS = 'SALES_PROCESS',
|
|
35
34
|
SUPPORT_PROCESS = 'SUPPORT_PROCESS',
|
|
36
35
|
SOLUTIONS_PROCESS = 'SOLUTIONS_PROCESS',
|
|
37
|
-
|
|
36
|
+
BILLING_PROCESS = 'BILLING_PROCESS',
|
|
37
|
+
LEAD_PROCESS = 'LEAD_PROCESS',
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
|
|
@@ -19,6 +19,10 @@ export enum UgRetroAuditEntityTypes {
|
|
|
19
19
|
OUTCOME_FORM = 'OUTCOME_FORM',
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
+
export enum UgRetroAuditExternalInternalSelector {
|
|
23
|
+
EXTERNAL_INSTALLATION = 'EXTERNAL_INSTALLATION',
|
|
24
|
+
INTERNAL_INSTALLATION = 'INTERNAL_INSTALLATION',
|
|
25
|
+
}
|
|
22
26
|
export enum UgRetroAuditCable300mmAway {
|
|
23
27
|
YES = 'YES',
|
|
24
28
|
NO = 'NO',
|
|
@@ -66,7 +70,7 @@ export enum UgRetroAuditInstallationRevision {
|
|
|
66
70
|
|
|
67
71
|
|
|
68
72
|
export enum UgRetroAuditPropertyKeys {
|
|
69
|
-
ExternalInternalSelector = '
|
|
73
|
+
ExternalInternalSelector = 'ExternalInternalSelector',
|
|
70
74
|
Cable300mmAway = 'Cable300mmAway',
|
|
71
75
|
Cable300mmAwayImage = 'Cable300mmAwayImage',
|
|
72
76
|
CableCleated = 'CableCleated',
|
|
@@ -91,6 +95,8 @@ export enum UgRetroAuditPropertyKeys {
|
|
|
91
95
|
|
|
92
96
|
|
|
93
97
|
export interface UgRetroAuditProperties {
|
|
98
|
+
//Select
|
|
99
|
+
ExternalInternalSelector: UgRetroAuditExternalInternalSelector
|
|
94
100
|
//Select
|
|
95
101
|
Cable300mmAway: UgRetroAuditCable300mmAway
|
|
96
102
|
//Add image
|
|
@@ -30,11 +30,11 @@ export enum UserGuideKnowledgeArticleModuleName {
|
|
|
30
30
|
CRM_MODULE = 'CRM_MODULE',
|
|
31
31
|
}
|
|
32
32
|
export enum UserGuideKnowledgeArticleCategory {
|
|
33
|
-
|
|
34
|
-
BILLING_PROCESS = 'BILLING_PROCESS',
|
|
33
|
+
SALES_PROCESS = 'SALES_PROCESS',
|
|
35
34
|
SUPPORT_PROCESS = 'SUPPORT_PROCESS',
|
|
36
35
|
SOLUTIONS_PROCESS = 'SOLUTIONS_PROCESS',
|
|
37
|
-
|
|
36
|
+
BILLING_PROCESS = 'BILLING_PROCESS',
|
|
37
|
+
LEAD_PROCESS = 'LEAD_PROCESS',
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
|
|
@@ -76,6 +76,8 @@ export interface UserGuideKnowledgeArticleProperties {
|
|
|
76
76
|
JsonContent: string
|
|
77
77
|
//The category to group this article
|
|
78
78
|
Category: UserGuideKnowledgeArticleCategory
|
|
79
|
+
//Application version that this Release note is referring to
|
|
80
|
+
Version: string
|
|
79
81
|
}
|
|
80
82
|
|
|
81
83
|
|
package/src/types-v1/Types.ts
CHANGED
|
@@ -22,9 +22,9 @@ export enum OdinEntities {
|
|
|
22
22
|
MESSAGE = 'NotificationModule:Message',
|
|
23
23
|
PHONE_NUMBER = 'CrmModule:PhoneNumber',
|
|
24
24
|
EXCHANGE = 'ProjectModule:Exchange',
|
|
25
|
+
OH_RETRO_AUDIT = 'FieldServiceModule:OhRetroAudit',
|
|
25
26
|
LINEAR_ISSUE = 'SupportModule:LinearIssue',
|
|
26
27
|
NETOMNIA_INSTALL_VERIFICATION = 'FieldServiceModule:NetomniaInstallVerification',
|
|
27
|
-
UG_RETRO_AUDIT = 'FieldServiceModule:UgRetroAudit',
|
|
28
28
|
KNOWLEDGE_ARTICLE = 'SupportModule:KnowledgeArticle',
|
|
29
29
|
EMAIL_TEMPLATE = 'NotificationModule:EmailTemplate',
|
|
30
30
|
DASHBOARD = 'FieldServiceModule:Dashboard',
|
|
@@ -36,7 +36,6 @@ export enum OdinEntities {
|
|
|
36
36
|
TEAM = 'IdentityModule:Team',
|
|
37
37
|
OH_EXTERNAL_AUDIT = 'FieldServiceModule:OhExternalAudit',
|
|
38
38
|
OLT_SNAPSHOT = 'ServiceModule:OltSnapshot',
|
|
39
|
-
OH_RETRO_AUDIT = 'FieldServiceModule:OhRetroAudit',
|
|
40
39
|
WORK_ORDER_REMEDIATION_VIEW = 'FieldServiceModule:WorkOrderRemediationView',
|
|
41
40
|
NETOMNIA_FTTH1_STAGE_INSTALL_AUDIT = 'FieldServiceModule:NetomniaFtth1StageInstallAudit',
|
|
42
41
|
QUEUE_CHANGE = 'SupportModule:QueueChange',
|
|
@@ -87,8 +86,8 @@ export enum OdinEntities {
|
|
|
87
86
|
IMPERSONATION_TRACKER = 'IdentityModule:ImpersonationTracker',
|
|
88
87
|
CUSTOMER_PHONE_PORTING = 'ServiceModule:CustomerPhonePorting',
|
|
89
88
|
FINGERPRINT = 'CrmModule:Fingerprint',
|
|
90
|
-
PAYMENT_METHOD = 'BillingModule:PaymentMethod',
|
|
91
89
|
BILLING_REQUEST = 'BillingModule:BillingRequest',
|
|
90
|
+
PAYMENT_METHOD = 'BillingModule:PaymentMethod',
|
|
92
91
|
BILLING_ADJUSTMENT = 'OrderModule:BillingAdjustment',
|
|
93
92
|
VENDOR = 'ProductModule:Vendor',
|
|
94
93
|
MOBILE_SUBSCRIBER = 'ServiceModule:MobileSubscriber',
|
|
@@ -131,6 +130,7 @@ export enum OdinEntities {
|
|
|
131
130
|
CONTRACT_BUY_OUT = 'OrderModule:ContractBuyOut',
|
|
132
131
|
REMEDIATION_OUTCOME_FORM = 'FieldServiceModule:RemediationOutcomeForm',
|
|
133
132
|
WORK_ORDER = 'FieldServiceModule:WorkOrder',
|
|
133
|
+
UG_RETRO_AUDIT = 'FieldServiceModule:UgRetroAudit',
|
|
134
134
|
ORDER_ITEM = 'OrderModule:OrderItem',
|
|
135
135
|
TRANSACTION = 'BillingModule:Transaction',
|
|
136
136
|
INVOICE = 'BillingModule:Invoice',
|