@outlit/tools 2.1.0 → 2.1.1
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/index.cjs +93 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +61 -3
- package/dist/index.d.ts +61 -3
- package/dist/index.js +93 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -620,6 +620,47 @@ var publicToolContracts = {
|
|
|
620
620
|
"type": "null"
|
|
621
621
|
}
|
|
622
622
|
]
|
|
623
|
+
},
|
|
624
|
+
"relationshipRole": {
|
|
625
|
+
"anyOf": [
|
|
626
|
+
{
|
|
627
|
+
"type": "string"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"type": "null"
|
|
631
|
+
}
|
|
632
|
+
]
|
|
633
|
+
},
|
|
634
|
+
"jobTitle": {
|
|
635
|
+
"anyOf": [
|
|
636
|
+
{
|
|
637
|
+
"type": "string"
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"type": "null"
|
|
641
|
+
}
|
|
642
|
+
]
|
|
643
|
+
},
|
|
644
|
+
"department": {
|
|
645
|
+
"anyOf": [
|
|
646
|
+
{
|
|
647
|
+
"type": "string"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"type": "null"
|
|
651
|
+
}
|
|
652
|
+
]
|
|
653
|
+
},
|
|
654
|
+
"employmentStartDate": {
|
|
655
|
+
"anyOf": [
|
|
656
|
+
{
|
|
657
|
+
"type": "string",
|
|
658
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"type": "null"
|
|
662
|
+
}
|
|
663
|
+
]
|
|
623
664
|
}
|
|
624
665
|
},
|
|
625
666
|
"required": [
|
|
@@ -631,7 +672,11 @@ var publicToolContracts = {
|
|
|
631
672
|
"customerDomain",
|
|
632
673
|
"journeyStage",
|
|
633
674
|
"lastActivityAt",
|
|
634
|
-
"daysSinceActivity"
|
|
675
|
+
"daysSinceActivity",
|
|
676
|
+
"relationshipRole",
|
|
677
|
+
"jobTitle",
|
|
678
|
+
"department",
|
|
679
|
+
"employmentStartDate"
|
|
635
680
|
],
|
|
636
681
|
"additionalProperties": false
|
|
637
682
|
}
|
|
@@ -1064,6 +1109,47 @@ var publicToolContracts = {
|
|
|
1064
1109
|
"type": "null"
|
|
1065
1110
|
}
|
|
1066
1111
|
]
|
|
1112
|
+
},
|
|
1113
|
+
"relationshipRole": {
|
|
1114
|
+
"anyOf": [
|
|
1115
|
+
{
|
|
1116
|
+
"type": "string"
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"type": "null"
|
|
1120
|
+
}
|
|
1121
|
+
]
|
|
1122
|
+
},
|
|
1123
|
+
"jobTitle": {
|
|
1124
|
+
"anyOf": [
|
|
1125
|
+
{
|
|
1126
|
+
"type": "string"
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"type": "null"
|
|
1130
|
+
}
|
|
1131
|
+
]
|
|
1132
|
+
},
|
|
1133
|
+
"department": {
|
|
1134
|
+
"anyOf": [
|
|
1135
|
+
{
|
|
1136
|
+
"type": "string"
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
"type": "null"
|
|
1140
|
+
}
|
|
1141
|
+
]
|
|
1142
|
+
},
|
|
1143
|
+
"employmentStartDate": {
|
|
1144
|
+
"anyOf": [
|
|
1145
|
+
{
|
|
1146
|
+
"type": "string",
|
|
1147
|
+
"pattern": "^\\d{4}-\\d{2}-\\d{2}$"
|
|
1148
|
+
},
|
|
1149
|
+
{
|
|
1150
|
+
"type": "null"
|
|
1151
|
+
}
|
|
1152
|
+
]
|
|
1067
1153
|
}
|
|
1068
1154
|
},
|
|
1069
1155
|
"required": [
|
|
@@ -1071,7 +1157,11 @@ var publicToolContracts = {
|
|
|
1071
1157
|
"email",
|
|
1072
1158
|
"name",
|
|
1073
1159
|
"journeyStage",
|
|
1074
|
-
"lastActivityAt"
|
|
1160
|
+
"lastActivityAt",
|
|
1161
|
+
"relationshipRole",
|
|
1162
|
+
"jobTitle",
|
|
1163
|
+
"department",
|
|
1164
|
+
"employmentStartDate"
|
|
1075
1165
|
],
|
|
1076
1166
|
"additionalProperties": false
|
|
1077
1167
|
}
|
|
@@ -12439,7 +12529,7 @@ var schemaTables = [
|
|
|
12439
12529
|
"users",
|
|
12440
12530
|
"revenue"
|
|
12441
12531
|
];
|
|
12442
|
-
var sdkConsumerContractHash = "
|
|
12532
|
+
var sdkConsumerContractHash = "fabc5dbceb5a7c624482b138ea6cb89622f315526a44bb43068c8c66fea3fbc3";
|
|
12443
12533
|
|
|
12444
12534
|
// src/contracts.ts
|
|
12445
12535
|
var publicToolNameSet = new Set(publicToolNames);
|