@d19n/youfibre-odin-sdk 2.0.10 → 2.0.11

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.
@@ -22,7 +22,7 @@ export interface CreateLeadFromBrskMessage extends OdinRecordCreatedEvent<Create
22
22
  * Properties for CreateLeadFromBrsk action
23
23
  *
24
24
  * @property Required fields: 4
25
- * @property Optional fields: 3
25
+ * @property Optional fields: 4
26
26
  */
27
27
  export interface CreateLeadFromBrskProperties {
28
28
  /**
@@ -78,6 +78,13 @@ export interface CreateLeadFromBrskProperties {
78
78
  * @type {TEXT}
79
79
  */
80
80
  Name?: string | null;
81
+ /**
82
+ * TitleName
83
+ *
84
+ * TitleName
85
+ * @type {TEXT}
86
+ */
87
+ TitleName?: string | null;
81
88
  }
82
89
  /**
83
90
  * CreateLeadFromBrsk
@@ -74,26 +74,26 @@ export declare enum PaymentMethodRefundOutcome {
74
74
  * Use these constants instead of string literals for type safety
75
75
  */
76
76
  export declare enum PaymentMethodRefundPropertyKeys {
77
+ /** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
78
+ Amount = "Amount",
79
+ /** Authorized By (Finance - PaymentMethodRefund) */
80
+ AuthorizedBy = "AuthorizedBy",
77
81
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
78
82
  ContactId = "ContactId",
79
- /** Work Order Ref (Finance - PaymentMethodRefund) */
80
- WorkOrderRef = "WorkOrderRef",
81
83
  /** Description (Finance - PaymentMethodRefund) */
82
84
  Description = "Description",
83
- /** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
84
- Status = "Status",
85
85
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
86
86
  InvoiceRef = "InvoiceRef",
87
- /** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
88
- Amount = "Amount",
89
87
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
90
88
  OrderRef = "OrderRef",
91
89
  /** Data field for PaymentMethodRefund records. Used by Finance team. */
92
90
  Outcome = "Outcome",
93
- /** Authorized By (Finance - PaymentMethodRefund) */
94
- AuthorizedBy = "AuthorizedBy",
95
91
  /** Reward for which the payment was triggered */
96
- RewardRef = "RewardRef"
92
+ RewardRef = "RewardRef",
93
+ /** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
94
+ Status = "Status",
95
+ /** Work Order Ref (Finance - PaymentMethodRefund) */
96
+ WorkOrderRef = "WorkOrderRef"
97
97
  }
98
98
  /**
99
99
  * Properties for PaymentMethodRefund records
@@ -101,38 +101,32 @@ export declare enum PaymentMethodRefundPropertyKeys {
101
101
  * @see BillingModule:PaymentMethodRefund
102
102
  */
103
103
  export interface PaymentMethodRefundProperties {
104
+ /** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking.
105
+ *
106
+ * @type {CURRENCY}
107
+ */
108
+ Amount: string;
109
+ /** Authorized By (Finance - PaymentMethodRefund)
110
+ *
111
+ * @type {TEXT}
112
+ */
113
+ AuthorizedBy: string;
104
114
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity.
105
115
  *
106
116
  * @type {LOOKUP}
107
117
  * @hidden This field is hidden in the UI
108
118
  */
109
119
  ContactId: string;
110
- /** Work Order Ref (Finance - PaymentMethodRefund)
111
- *
112
- * @type {LOOKUP}
113
- */
114
- WorkOrderRef: string;
115
120
  /** Description (Finance - PaymentMethodRefund)
116
121
  *
117
122
  * @type {TEXT}
118
123
  */
119
124
  Description: string;
120
- /** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team.
121
- *
122
- * @type {TEXT}
123
- * @hidden This field is hidden in the UI
124
- */
125
- Status: string;
126
125
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity.
127
126
  *
128
127
  * @type {LOOKUP}
129
128
  */
130
129
  InvoiceRef: string;
131
- /** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking.
132
- *
133
- * @type {CURRENCY}
134
- */
135
- Amount: string;
136
130
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity.
137
131
  *
138
132
  * @type {LOOKUP}
@@ -144,16 +138,22 @@ export interface PaymentMethodRefundProperties {
144
138
  * @enum {PaymentMethodRefundOutcome}
145
139
  */
146
140
  Outcome: PaymentMethodRefundOutcome;
147
- /** Authorized By (Finance - PaymentMethodRefund)
141
+ /** Reward for which the payment was triggered
142
+ *
143
+ * @type {LOOKUP}
144
+ */
145
+ RewardRef: string;
146
+ /** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team.
148
147
  *
149
148
  * @type {TEXT}
149
+ * @hidden This field is hidden in the UI
150
150
  */
151
- AuthorizedBy: string;
152
- /** Reward for which the payment was triggered
151
+ Status: string;
152
+ /** Work Order Ref (Finance - PaymentMethodRefund)
153
153
  *
154
154
  * @type {LOOKUP}
155
155
  */
156
- RewardRef: string;
156
+ WorkOrderRef: string;
157
157
  }
158
158
  /**
159
159
  * PaymentMethodRefund entity from BillingModule
@@ -73,26 +73,26 @@ var PaymentMethodRefundOutcome;
73
73
  */
74
74
  var PaymentMethodRefundPropertyKeys;
75
75
  (function (PaymentMethodRefundPropertyKeys) {
76
+ /** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
77
+ PaymentMethodRefundPropertyKeys["Amount"] = "Amount";
78
+ /** Authorized By (Finance - PaymentMethodRefund) */
79
+ PaymentMethodRefundPropertyKeys["AuthorizedBy"] = "AuthorizedBy";
76
80
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
77
81
  PaymentMethodRefundPropertyKeys["ContactId"] = "ContactId";
78
- /** Work Order Ref (Finance - PaymentMethodRefund) */
79
- PaymentMethodRefundPropertyKeys["WorkOrderRef"] = "WorkOrderRef";
80
82
  /** Description (Finance - PaymentMethodRefund) */
81
83
  PaymentMethodRefundPropertyKeys["Description"] = "Description";
82
- /** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
83
- PaymentMethodRefundPropertyKeys["Status"] = "Status";
84
84
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
85
85
  PaymentMethodRefundPropertyKeys["InvoiceRef"] = "InvoiceRef";
86
- /** Monetary value field for PaymentMethodRefund. Used by Finance team for financial tracking. */
87
- PaymentMethodRefundPropertyKeys["Amount"] = "Amount";
88
86
  /** Reference identifier for PaymentMethodRefund relationships. Used for data integrity. */
89
87
  PaymentMethodRefundPropertyKeys["OrderRef"] = "OrderRef";
90
88
  /** Data field for PaymentMethodRefund records. Used by Finance team. */
91
89
  PaymentMethodRefundPropertyKeys["Outcome"] = "Outcome";
92
- /** Authorized By (Finance - PaymentMethodRefund) */
93
- PaymentMethodRefundPropertyKeys["AuthorizedBy"] = "AuthorizedBy";
94
90
  /** Reward for which the payment was triggered */
95
91
  PaymentMethodRefundPropertyKeys["RewardRef"] = "RewardRef";
92
+ /** Status indicator for PaymentMethodRefund records. Tracks lifecycle state. Used by Finance team. */
93
+ PaymentMethodRefundPropertyKeys["Status"] = "Status";
94
+ /** Work Order Ref (Finance - PaymentMethodRefund) */
95
+ PaymentMethodRefundPropertyKeys["WorkOrderRef"] = "WorkOrderRef";
96
96
  })(PaymentMethodRefundPropertyKeys = exports.PaymentMethodRefundPropertyKeys || (exports.PaymentMethodRefundPropertyKeys = {}));
97
97
  /**
98
98
  * PaymentMethodRefund entity from BillingModule
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d19n/youfibre-odin-sdk",
3
- "version": "2.0.10",
3
+ "version": "2.0.11",
4
4
  "description": "",
5
5
  "author": "@d19n",
6
6
  "license": "UNLICENSED",