@credal/actions 0.2.211 → 0.2.212

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.
@@ -10417,6 +10417,10 @@ export const oktaOrgGetOktaUserByNameDefinition = {
10417
10417
  type: "string",
10418
10418
  description: "The user's department",
10419
10419
  },
10420
+ location: {
10421
+ type: "string",
10422
+ description: "The user's location",
10423
+ },
10420
10424
  },
10421
10425
  },
10422
10426
  error: {
@@ -7233,16 +7233,19 @@ export declare const oktaOrgGetOktaUserByNameOutputSchema: z.ZodObject<{
7233
7233
  title: z.ZodOptional<z.ZodString>;
7234
7234
  division: z.ZodOptional<z.ZodString>;
7235
7235
  department: z.ZodOptional<z.ZodString>;
7236
+ location: z.ZodOptional<z.ZodString>;
7236
7237
  }, "strip", z.ZodTypeAny, {
7237
7238
  id: string;
7238
7239
  email: string;
7239
7240
  title?: string | undefined;
7241
+ location?: string | undefined;
7240
7242
  division?: string | undefined;
7241
7243
  department?: string | undefined;
7242
7244
  }, {
7243
7245
  id: string;
7244
7246
  email: string;
7245
7247
  title?: string | undefined;
7248
+ location?: string | undefined;
7246
7249
  division?: string | undefined;
7247
7250
  department?: string | undefined;
7248
7251
  }>>;
@@ -7254,6 +7257,7 @@ export declare const oktaOrgGetOktaUserByNameOutputSchema: z.ZodObject<{
7254
7257
  id: string;
7255
7258
  email: string;
7256
7259
  title?: string | undefined;
7260
+ location?: string | undefined;
7257
7261
  division?: string | undefined;
7258
7262
  department?: string | undefined;
7259
7263
  } | undefined;
@@ -7264,6 +7268,7 @@ export declare const oktaOrgGetOktaUserByNameOutputSchema: z.ZodObject<{
7264
7268
  id: string;
7265
7269
  email: string;
7266
7270
  title?: string | undefined;
7271
+ location?: string | undefined;
7267
7272
  division?: string | undefined;
7268
7273
  department?: string | undefined;
7269
7274
  } | undefined;
@@ -3861,6 +3861,7 @@ export const oktaOrgGetOktaUserByNameOutputSchema = z.object({
3861
3861
  title: z.string().describe("The user's title").optional(),
3862
3862
  division: z.string().describe("The user's division").optional(),
3863
3863
  department: z.string().describe("The user's department").optional(),
3864
+ location: z.string().describe("The user's location").optional(),
3864
3865
  })
3865
3866
  .optional(),
3866
3867
  error: z.string().describe("Error message if retrieval failed.").optional(),
@@ -54,6 +54,7 @@ const getOktaUserByName = async ({ authParams, params, }) => {
54
54
  title: user.profile.title,
55
55
  division: user.profile.division,
56
56
  department: user.profile.department,
57
+ location: user.profile.location,
57
58
  },
58
59
  };
59
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@credal/actions",
3
- "version": "0.2.211",
3
+ "version": "0.2.212",
4
4
  "type": "module",
5
5
  "description": "AI Actions by Credal AI",
6
6
  "sideEffects": false,