@singi-labs/sifa-sdk 0.12.61 → 0.12.63
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-B1WYOzm1.d.ts → index-0YagaVMZ.d.ts} +2 -2
- package/dist/{index-czrerd84.d.ts → index-Bzz43OK-.d.ts} +3 -3
- package/dist/{index-Dqe0Nlck.d.cts → index-nKxVAIQB.d.cts} +3 -3
- package/dist/{index-BcKfdI4X.d.cts → index-wqDm7eYP.d.cts} +2 -2
- package/dist/index.cjs +23 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +23 -4
- package/dist/index.js.map +1 -1
- package/dist/{org-GI1GVjZw.d.cts → org-CP0v111-.d.cts} +1 -1
- package/dist/{org-66bQLHJd.d.ts → org-e-XmEErj.d.ts} +1 -1
- package/dist/{profile-summary-Bqj3TDVd.d.cts → profile-summary-2y26X2x_.d.cts} +1 -1
- package/dist/{profile-summary-YZXjMymn.d.ts → profile-summary-Yoz6yqZF.d.ts} +1 -1
- package/dist/query/fetchers/index.d.cts +4 -4
- package/dist/query/fetchers/index.d.ts +4 -4
- package/dist/query/hooks/index.d.cts +3 -3
- package/dist/query/hooks/index.d.ts +3 -3
- package/dist/query/index.d.cts +7 -7
- package/dist/query/index.d.ts +7 -7
- package/dist/schemas/index.cjs +11 -3
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +1 -1
- package/dist/schemas/index.d.ts +1 -1
- package/dist/schemas/index.js +11 -3
- package/dist/schemas/index.js.map +1 -1
- package/dist/schemas/write/index.cjs +5 -0
- package/dist/schemas/write/index.cjs.map +1 -1
- package/dist/schemas/write/index.d.cts +3 -0
- package/dist/schemas/write/index.d.ts +3 -0
- package/dist/schemas/write/index.js +5 -0
- package/dist/schemas/write/index.js.map +1 -1
- package/dist/{shared-B9ng04Kt.d.cts → shared-BibYErTJ.d.cts} +3 -0
- package/dist/{shared-B9ng04Kt.d.ts → shared-BibYErTJ.d.ts} +3 -0
- package/dist/{types-BkRDvKTp.d.ts → types-BreNOGZr.d.ts} +5 -0
- package/dist/{types-BiBx2Utr.d.cts → types-qfncrl4o.d.cts} +5 -0
- package/package.json +1 -1
|
@@ -382,6 +382,9 @@ declare const ProfilePositionRecordSchema: z.ZodObject<{
|
|
|
382
382
|
title: z.ZodString;
|
|
383
383
|
description: z.ZodOptional<z.ZodString>;
|
|
384
384
|
employmentType: z.ZodOptional<z.ZodString>;
|
|
385
|
+
onBehalfOf: z.ZodOptional<z.ZodString>;
|
|
386
|
+
onBehalfOfDid: z.ZodOptional<z.ZodString>;
|
|
387
|
+
onBehalfOfEntityRef: z.ZodOptional<z.ZodString>;
|
|
385
388
|
workplaceType: z.ZodOptional<z.ZodString>;
|
|
386
389
|
location: z.ZodOptional<z.ZodUnknown>;
|
|
387
390
|
startedAt: z.ZodString;
|
|
@@ -32,6 +32,11 @@ interface PositionView {
|
|
|
32
32
|
entityName?: string;
|
|
33
33
|
description?: string;
|
|
34
34
|
employmentType?: string;
|
|
35
|
+
onBehalfOf?: string;
|
|
36
|
+
onBehalfOfDid?: string;
|
|
37
|
+
onBehalfOfEntityRef?: string;
|
|
38
|
+
/** Resolved name for the represented party. Render `onBehalfOf` when absent -- never the raw ref URI. */
|
|
39
|
+
onBehalfOfEntityName?: string;
|
|
35
40
|
workplaceType?: string;
|
|
36
41
|
locationCountry?: string;
|
|
37
42
|
locationRegion?: string;
|
|
@@ -32,6 +32,11 @@ interface PositionView {
|
|
|
32
32
|
entityName?: string;
|
|
33
33
|
description?: string;
|
|
34
34
|
employmentType?: string;
|
|
35
|
+
onBehalfOf?: string;
|
|
36
|
+
onBehalfOfDid?: string;
|
|
37
|
+
onBehalfOfEntityRef?: string;
|
|
38
|
+
/** Resolved name for the represented party. Render `onBehalfOf` when absent -- never the raw ref URI. */
|
|
39
|
+
onBehalfOfEntityName?: string;
|
|
35
40
|
workplaceType?: string;
|
|
36
41
|
locationCountry?: string;
|
|
37
42
|
locationRegion?: string;
|
package/package.json
CHANGED