@outlit/cli 3.1.0 → 3.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.
Files changed (2) hide show
  1. package/dist/cli.js +94 -4
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -104,7 +104,7 @@ var package_default;
104
104
  var init_package = __esm(() => {
105
105
  package_default = {
106
106
  name: "@outlit/cli",
107
- version: "3.1.0",
107
+ version: "3.1.1",
108
108
  description: "CLI for querying Outlit customer context and installing agent skills",
109
109
  license: "Apache-2.0",
110
110
  repository: {
@@ -147,7 +147,7 @@ var init_package = __esm(() => {
147
147
  },
148
148
  dependencies: {
149
149
  "@clack/prompts": "^1.0.1",
150
- "@outlit/tools": "^2.1.0",
150
+ "@outlit/tools": "^2.1.1",
151
151
  citty: "^0.2.1"
152
152
  },
153
153
  devDependencies: {
@@ -2263,6 +2263,47 @@ var init_dist4 = __esm(() => {
2263
2263
  type: "null"
2264
2264
  }
2265
2265
  ]
2266
+ },
2267
+ relationshipRole: {
2268
+ anyOf: [
2269
+ {
2270
+ type: "string"
2271
+ },
2272
+ {
2273
+ type: "null"
2274
+ }
2275
+ ]
2276
+ },
2277
+ jobTitle: {
2278
+ anyOf: [
2279
+ {
2280
+ type: "string"
2281
+ },
2282
+ {
2283
+ type: "null"
2284
+ }
2285
+ ]
2286
+ },
2287
+ department: {
2288
+ anyOf: [
2289
+ {
2290
+ type: "string"
2291
+ },
2292
+ {
2293
+ type: "null"
2294
+ }
2295
+ ]
2296
+ },
2297
+ employmentStartDate: {
2298
+ anyOf: [
2299
+ {
2300
+ type: "string",
2301
+ pattern: "^\\d{4}-\\d{2}-\\d{2}$"
2302
+ },
2303
+ {
2304
+ type: "null"
2305
+ }
2306
+ ]
2266
2307
  }
2267
2308
  },
2268
2309
  required: [
@@ -2274,7 +2315,11 @@ var init_dist4 = __esm(() => {
2274
2315
  "customerDomain",
2275
2316
  "journeyStage",
2276
2317
  "lastActivityAt",
2277
- "daysSinceActivity"
2318
+ "daysSinceActivity",
2319
+ "relationshipRole",
2320
+ "jobTitle",
2321
+ "department",
2322
+ "employmentStartDate"
2278
2323
  ],
2279
2324
  additionalProperties: false
2280
2325
  }
@@ -2707,6 +2752,47 @@ var init_dist4 = __esm(() => {
2707
2752
  type: "null"
2708
2753
  }
2709
2754
  ]
2755
+ },
2756
+ relationshipRole: {
2757
+ anyOf: [
2758
+ {
2759
+ type: "string"
2760
+ },
2761
+ {
2762
+ type: "null"
2763
+ }
2764
+ ]
2765
+ },
2766
+ jobTitle: {
2767
+ anyOf: [
2768
+ {
2769
+ type: "string"
2770
+ },
2771
+ {
2772
+ type: "null"
2773
+ }
2774
+ ]
2775
+ },
2776
+ department: {
2777
+ anyOf: [
2778
+ {
2779
+ type: "string"
2780
+ },
2781
+ {
2782
+ type: "null"
2783
+ }
2784
+ ]
2785
+ },
2786
+ employmentStartDate: {
2787
+ anyOf: [
2788
+ {
2789
+ type: "string",
2790
+ pattern: "^\\d{4}-\\d{2}-\\d{2}$"
2791
+ },
2792
+ {
2793
+ type: "null"
2794
+ }
2795
+ ]
2710
2796
  }
2711
2797
  },
2712
2798
  required: [
@@ -2714,7 +2800,11 @@ var init_dist4 = __esm(() => {
2714
2800
  "email",
2715
2801
  "name",
2716
2802
  "journeyStage",
2717
- "lastActivityAt"
2803
+ "lastActivityAt",
2804
+ "relationshipRole",
2805
+ "jobTitle",
2806
+ "department",
2807
+ "employmentStartDate"
2718
2808
  ],
2719
2809
  additionalProperties: false
2720
2810
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@outlit/cli",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "CLI for querying Outlit customer context and installing agent skills",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@clack/prompts": "^1.0.1",
46
- "@outlit/tools": "^2.1.0",
46
+ "@outlit/tools": "^2.1.1",
47
47
  "citty": "^0.2.1"
48
48
  },
49
49
  "devDependencies": {