@osdk/typescript-sdk-docs 0.5.0-beta.4 → 0.5.0-beta.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @osdk/typescript-sdk-docs
2
2
 
3
+ ## 0.5.0-beta.5
4
+
5
+ ### Minor Changes
6
+
7
+ - 823c756: Update object parameter format in TypeScript SDK documentation to directly provide the primary key as a string
8
+ - 0e863aa: Tweak media upload snippet
9
+
3
10
  ## 0.5.0-beta.4
4
11
 
5
12
  ### Minor Changes
@@ -263,7 +263,7 @@ function renderType(type, majorVersion, context) {
263
263
  case "object":
264
264
  const primaryKeyValue = type.primaryKeyType === "string" ? "\"primaryKeyValue\"" : "primaryKeyValue";
265
265
  if (context === "actionParameter") {
266
- return majorVersion >= SdkMajorVersion.V2 ? `{ $primaryKey: ${primaryKeyValue}, /* other properties */ }` : `{ __primaryKey: ${primaryKeyValue}, /* other properties */ }`;
266
+ return majorVersion >= SdkMajorVersion.V2 ? `"primaryKeyValue" // or myObjectInstance` : `{ __primaryKey: ${primaryKeyValue}, /* other properties */ }`;
267
267
  }
268
268
  return primaryKeyValue;
269
269
  case "anonymousCustomType":
@@ -275,7 +275,7 @@ function renderType(type, majorVersion, context) {
275
275
  case "marking":
276
276
  return "{}";
277
277
  case "mediaReference":
278
- return context === "actionParameter" ? "mediaReferenceOrUpload" : "mediaReferenceRid";
278
+ return context === "actionParameter" ? "mediaUpload" : "mediaReferenceRid";
279
279
  case "objectType":
280
280
  return `"${type.objectTypeApiName}"`;
281
281
  case "map":
@@ -1 +1 @@
1
- {"version":3,"file":"docs.js","names":["outdent","snippets","indentedNewLine","spacesCount","repeat","TYPESCRIPT_OSDK_SNIPPETS","computedVariables","functionInputValuesV1","handleFunctionInputValuesV1","functionInputValuesV2","handleFunctionInputValuesV2","actionParameterSampleValuesV1","handleActionParameterSampleValuesV1","actionParameterSampleValuesV2","handleActionParameterSampleValuesV2","propertyValueV1","handlePropertyValueV1","propertyValueV2","handlePropertyValueV2","propertyValueIncrementedV1","handlePropertyValueIncrementedV1","propertyValueIncrementedV2","handlePropertyValueIncrementedV2","propertiesV1","handlePropertiesV1","propertiesV2","handlePropertiesV2","primaryKeyPropertyV1","handlePrimaryKeyPropertyV1","primaryKeyPropertyV2","handlePrimaryKeyPropertyV2","primaryKeyPropertyValueV2","handlePrimaryKeyPropertyValueV2","linkedPropertiesV1","handleLinkedPropertiesV1","linkedPropertiesV2","handleLinkedPropertiesV2","linkedPrimaryKeyPropertyV1","handleLinkedPrimaryKeyPropertyV1","linkedPrimaryKeyPropertyV2","handleLinkedPrimaryKeyPropertyV2","arrayElementValue","handleArrayElementValue","SdkMajorVersion","rawFunctionInputValues","renderFunctionInputValues","V1","V2","rawActionTypeParameterValues","renderActionParameterValues","rawPropertyValue","renderPropertyValue","rawPropertyValueIncremented","renderArrayElementPropertyValue","propertyValue","majorVersion","Error","renderType","rawProperties","map","prop","apiName","value","rawPrimaryKeyProperty","rawLinkedProperties","rawLinkedPrimaryKeyProperty","type","Object","keys","parameters","length","entries","key","join","param","index","array","last","context","arraySubType","subtype","toString","getDateParameter","daysOffset","getTimestampParameter","primaryKeyValue","primaryKeyType","hasAttachments","objectTypeApiName","keyType","getMapKeyObjectName","valueType","getDisplayName","processObjectApiName","input","tokens","split","result","token","titleCase","toLowerCase","charAt","slice","toUpperCase","objectApiName","lastIndexOf","offsetDate","Date","setDate","getDate","toISOString"],"sources":["docs.ts"],"sourcesContent":["/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { SdkSnippets } from \"@osdk/docs-spec-core\";\nimport type {\n ActionParameterSampleValuesIR,\n ActionParameterSampleValueTypeIR,\n FunctionSampleParametersIR,\n FunctionSampleValueTypeIR,\n OSDK_SNIPPETS_SPEC,\n PropertySampleIR,\n PropertySampleValueTypeIR,\n} from \"@osdk/docs-spec-sdk\";\nimport { outdent } from \"outdent\";\nimport { snippets } from \"./generatedNoCheck/docsNoComputedVariables.js\";\n\nconst indentedNewLine = (spacesCount: number) => `\\n${\" \".repeat(spacesCount)}`;\n\nexport const TYPESCRIPT_OSDK_SNIPPETS: SdkSnippets<typeof OSDK_SNIPPETS_SPEC> =\n {\n ...snippets,\n computedVariables: {\n functionInputValuesV1: handleFunctionInputValuesV1,\n functionInputValuesV2: handleFunctionInputValuesV2,\n actionParameterSampleValuesV1: handleActionParameterSampleValuesV1,\n actionParameterSampleValuesV2: handleActionParameterSampleValuesV2,\n propertyValueV1: handlePropertyValueV1,\n propertyValueV2: handlePropertyValueV2,\n propertyValueIncrementedV1: handlePropertyValueIncrementedV1,\n propertyValueIncrementedV2: handlePropertyValueIncrementedV2,\n propertiesV1: handlePropertiesV1,\n propertiesV2: handlePropertiesV2,\n primaryKeyPropertyV1: handlePrimaryKeyPropertyV1,\n primaryKeyPropertyV2: handlePrimaryKeyPropertyV2,\n primaryKeyPropertyValueV2: handlePrimaryKeyPropertyValueV2,\n linkedPropertiesV1: handleLinkedPropertiesV1,\n linkedPropertiesV2: handleLinkedPropertiesV2,\n linkedPrimaryKeyPropertyV1: handleLinkedPrimaryKeyPropertyV1,\n linkedPrimaryKeyPropertyV2: handleLinkedPrimaryKeyPropertyV2,\n arrayElementValue: handleArrayElementValue,\n },\n };\n\n// SDK major version enum\nenum SdkMajorVersion {\n V1 = 1,\n V2 = 2,\n}\n\n// Helper functions for properties\nfunction handleFunctionInputValuesV1({\n rawFunctionInputValues,\n}: {\n rawFunctionInputValues?: FunctionSampleParametersIR;\n}) {\n return renderFunctionInputValues(rawFunctionInputValues, SdkMajorVersion.V1);\n}\n\nfunction handleFunctionInputValuesV2({\n rawFunctionInputValues,\n}: {\n rawFunctionInputValues?: FunctionSampleParametersIR;\n}) {\n return renderFunctionInputValues(rawFunctionInputValues, SdkMajorVersion.V2);\n}\n\nfunction handleActionParameterSampleValuesV1({\n rawActionTypeParameterValues,\n}: {\n rawActionTypeParameterValues?: ActionParameterSampleValuesIR;\n}) {\n return renderActionParameterValues(\n rawActionTypeParameterValues,\n SdkMajorVersion.V1,\n );\n}\n\nfunction handleActionParameterSampleValuesV2({\n rawActionTypeParameterValues,\n}: {\n rawActionTypeParameterValues?: ActionParameterSampleValuesIR;\n}) {\n return renderActionParameterValues(\n rawActionTypeParameterValues,\n SdkMajorVersion.V2,\n );\n}\n\nfunction handlePropertyValueV1(\n { rawPropertyValue }: { rawPropertyValue?: PropertySampleValueTypeIR },\n) {\n return renderPropertyValue(rawPropertyValue, SdkMajorVersion.V1);\n}\n\nfunction handlePropertyValueV2(\n { rawPropertyValue }: { rawPropertyValue?: PropertySampleValueTypeIR },\n) {\n return renderPropertyValue(rawPropertyValue, SdkMajorVersion.V2);\n}\n\nfunction handlePropertyValueIncrementedV1({\n rawPropertyValueIncremented,\n}: {\n rawPropertyValueIncremented?: PropertySampleValueTypeIR;\n}) {\n return renderPropertyValue(rawPropertyValueIncremented, SdkMajorVersion.V1);\n}\n\nfunction handlePropertyValueIncrementedV2({\n rawPropertyValueIncremented,\n}: {\n rawPropertyValueIncremented?: PropertySampleValueTypeIR;\n}) {\n return renderPropertyValue(rawPropertyValueIncremented, SdkMajorVersion.V2);\n}\n\nfunction handleArrayElementValue(\n { rawPropertyValue }: { rawPropertyValue?: PropertySampleValueTypeIR },\n) {\n return renderArrayElementPropertyValue(rawPropertyValue, SdkMajorVersion.V2);\n}\n\nfunction renderArrayElementPropertyValue(\n propertyValue: PropertySampleValueTypeIR | undefined,\n majorVersion: SdkMajorVersion,\n): string {\n if (propertyValue == null) {\n throw new Error(\"Cannot render a null property value\");\n }\n\n return renderType(propertyValue, majorVersion, \"arraySubType\");\n}\n\nfunction handlePropertiesV1(\n { rawProperties }: { rawProperties?: PropertySampleIR[] },\n) {\n if (rawProperties == null) {\n throw new Error(\"Cannot render with null rawProperties\");\n }\n\n return rawProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V1),\n }));\n}\n\nfunction handlePropertiesV2(\n { rawProperties }: { rawProperties?: PropertySampleIR[] },\n) {\n if (rawProperties == null) {\n throw new Error(\"Cannot render with null rawProperties\");\n }\n\n return rawProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V2),\n }));\n}\n\nfunction handlePrimaryKeyPropertyV1(\n { rawPrimaryKeyProperty }: { rawPrimaryKeyProperty?: PropertySampleIR },\n) {\n if (rawPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawPrimaryKeyProperty.apiName,\n value: renderPropertyValue(rawPrimaryKeyProperty.value, SdkMajorVersion.V1),\n };\n}\n\nfunction handlePrimaryKeyPropertyV2(\n { rawPrimaryKeyProperty }: { rawPrimaryKeyProperty?: PropertySampleIR },\n) {\n if (rawPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawPrimaryKeyProperty.apiName,\n value: renderPropertyValue(rawPrimaryKeyProperty.value, SdkMajorVersion.V2),\n };\n}\n\nfunction handlePrimaryKeyPropertyValueV2({\n rawPrimaryKeyProperty,\n}: {\n rawPrimaryKeyProperty?: PropertySampleIR;\n}) {\n if (rawPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawPrimaryKeyProperty\");\n }\n\n return renderPropertyValue(rawPrimaryKeyProperty.value, SdkMajorVersion.V2);\n}\n\nfunction handleLinkedPropertiesV1(\n { rawLinkedProperties }: { rawLinkedProperties?: PropertySampleIR[] },\n) {\n if (rawLinkedProperties == null) {\n throw new Error(\"Cannot render with null rawLinkedProperties\");\n }\n\n return rawLinkedProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V1),\n }));\n}\n\nfunction handleLinkedPropertiesV2(\n { rawLinkedProperties }: { rawLinkedProperties?: PropertySampleIR[] },\n) {\n if (rawLinkedProperties == null) {\n throw new Error(\"Cannot render with null rawLinkedProperties\");\n }\n\n return rawLinkedProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V2),\n }));\n}\n\nfunction handleLinkedPrimaryKeyPropertyV1({\n rawLinkedPrimaryKeyProperty,\n}: {\n rawLinkedPrimaryKeyProperty?: {\n apiName: string;\n value: PropertySampleValueTypeIR;\n type: string;\n };\n}) {\n if (rawLinkedPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawLinkedPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawLinkedPrimaryKeyProperty.apiName,\n value: renderPropertyValue(\n rawLinkedPrimaryKeyProperty.value,\n SdkMajorVersion.V1,\n ),\n type: rawLinkedPrimaryKeyProperty.type,\n };\n}\n\nfunction handleLinkedPrimaryKeyPropertyV2({\n rawLinkedPrimaryKeyProperty,\n}: {\n rawLinkedPrimaryKeyProperty?: {\n apiName: string;\n value: PropertySampleValueTypeIR;\n type: string;\n };\n}) {\n if (rawLinkedPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawLinkedPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawLinkedPrimaryKeyProperty.apiName,\n value: renderPropertyValue(\n rawLinkedPrimaryKeyProperty.value,\n SdkMajorVersion.V2,\n ),\n type: rawLinkedPrimaryKeyProperty.type,\n };\n}\n\n// Common function to render function input values for any version\nfunction renderFunctionInputValues(\n rawFunctionInputValues: FunctionSampleParametersIR | undefined,\n majorVersion: SdkMajorVersion,\n): string {\n if (rawFunctionInputValues == null) {\n throw new Error(\"Cannot render a null rawFunctionInputValues\");\n }\n if (Object.keys(rawFunctionInputValues.parameters).length === 0) {\n return \"\";\n }\n\n return outdent`\n {\n ${\n Object.entries(rawFunctionInputValues.parameters)\n .map(([key, value]) =>\n `\"${key}\": ${renderType(value, majorVersion, \"functionInput\")}`\n )\n .join(`,${indentedNewLine(4)}`)\n }\n }`;\n}\n\n// Common function to render action parameter values for any version\nfunction renderActionParameterValues(\n rawActionTypeParameterValues: ActionParameterSampleValuesIR | undefined,\n majorVersion: SdkMajorVersion,\n): Array<{ key: string; value: string; last: boolean }> {\n if (rawActionTypeParameterValues == null) {\n throw new Error(\"Cannot render a null rawActionTypeParameterValues\");\n }\n\n return rawActionTypeParameterValues.map((param, index, array) => ({\n key: param.key,\n value: renderType(param.value, majorVersion, \"actionParameter\"),\n last: index === array.length - 1,\n }));\n}\n\n// Function to render property values\nfunction renderPropertyValue(\n propertyValue: PropertySampleValueTypeIR | undefined,\n majorVersion: SdkMajorVersion,\n): string {\n if (propertyValue == null) {\n throw new Error(\"Cannot render a null property value\");\n }\n\n return renderType(propertyValue, majorVersion, \"property\");\n}\n\n// Unified render function for all types\nfunction renderType(\n type:\n | ActionParameterSampleValueTypeIR\n | FunctionSampleValueTypeIR\n | PropertySampleValueTypeIR,\n majorVersion: SdkMajorVersion,\n context: \"property\" | \"functionInput\" | \"actionParameter\" | \"arraySubType\",\n): string {\n if (type == null) {\n throw new Error(\"Cannot render a null type value\");\n }\n\n switch (type.type) {\n case \"array\":\n case \"set\":\n case \"list\":\n const arraySubType = renderType(type.subtype, majorVersion, context);\n return context === \"arraySubType\" ? arraySubType : `[${arraySubType}]`;\n case \"boolean\":\n return type.value ? \"true\" : \"false\";\n case \"byte\":\n case \"integer\":\n case \"long\":\n case \"short\":\n return type.value.toString();\n case \"decimal\":\n case \"double\":\n case \"float\":\n if (context === \"actionParameter\") {\n return `\"${type.value.toString()}\"`;\n }\n return type.value.toString();\n case \"date\":\n return getDateParameter(majorVersion, type.daysOffset);\n case \"timestamp\":\n return getTimestampParameter(majorVersion, type.daysOffset);\n case \"object\":\n const primaryKeyValue = type.primaryKeyType === \"string\"\n ? \"\\\"primaryKeyValue\\\"\"\n : \"primaryKeyValue\";\n if (context === \"actionParameter\") {\n return majorVersion >= SdkMajorVersion.V2\n ? `{ $primaryKey: ${primaryKeyValue}, /* other properties */ }`\n : `{ __primaryKey: ${primaryKeyValue}, /* other properties */ }`;\n }\n return primaryKeyValue;\n case \"anonymousCustomType\":\n case \"customType\":\n return \"{}\";\n case \"attachment\":\n return type.hasAttachments ? \"attachment\" : \"{}\";\n case \"interface\":\n case \"marking\":\n return \"{}\";\n case \"mediaReference\":\n return context === \"actionParameter\"\n ? \"mediaReferenceOrUpload\"\n : \"mediaReferenceRid\";\n case \"objectType\":\n return `\"${type.objectTypeApiName}\"`;\n case \"map\":\n if (type.keyType.type === \"object\") {\n return `{[${\n getMapKeyObjectName(type.keyType.apiName)\n }.$objectSpecifier]: ${\n renderType(type.valueType, majorVersion, context)\n }}`;\n }\n return `{${\n renderType(\n type.valueType,\n majorVersion,\n context,\n )\n }: ${renderType(type.valueType, majorVersion, context)}}`;\n\n case \"string\":\n case \"unknown\":\n default:\n return `\"${type.value ?? \"value\"}\"`;\n }\n}\n\nfunction getMapKeyObjectName(apiName?: string) {\n if (apiName == null) {\n return \"osdkObject\";\n }\n return `${getDisplayName(processObjectApiName(apiName))}OsdkObject`;\n}\n\nfunction getDisplayName(input: string): string {\n const tokens = input.split(/[_-]|(?<=[a-z])(?=[A-Z])/);\n const result = tokens.map(token => titleCase(token.toLowerCase())).join(\"\");\n return result.charAt(0).toLowerCase() + result.slice(1);\n}\n\nfunction titleCase(token: string) {\n return (token[0] ?? \"\").toUpperCase() + token.slice(1);\n}\n\n// For objects that have namespaces prefixed to their api name, we remove it and only return the last portion\n// As that is what the TS OSDK uses to generate identifiers for objects\nfunction processObjectApiName(objectApiName: string) {\n const last = objectApiName.lastIndexOf(\".\");\n if (last === -1) {\n return objectApiName;\n }\n return objectApiName.slice(last + 1);\n}\n\n// Generic helper functions for date and timestamp\nfunction getDateParameter(\n majorVersion: SdkMajorVersion,\n daysOffset = 0,\n): string {\n const offsetDate = new Date();\n offsetDate.setDate(offsetDate.getDate() + daysOffset);\n const hasOffset = daysOffset !== 0;\n\n if (majorVersion >= SdkMajorVersion.V2) {\n return `\"${offsetDate.toISOString().split(\"T\")[0]}\"`;\n }\n return hasOffset\n ? `LocalDate.now().plusDays(${daysOffset})`\n : \"LocalDate.now()\";\n}\n\nfunction getTimestampParameter(\n majorVersion: SdkMajorVersion,\n daysOffset = 0,\n): string {\n const offsetDate = new Date();\n offsetDate.setDate(offsetDate.getDate() + daysOffset);\n const hasOffset = daysOffset !== 0;\n\n if (majorVersion >= SdkMajorVersion.V2) {\n return `\"${offsetDate.toISOString()}\"`;\n }\n return hasOffset\n ? `Timestamp.now().plusDays(${daysOffset})`\n : \"Timestamp.now()\";\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"file":"docs.js","names":["outdent","snippets","indentedNewLine","spacesCount","repeat","TYPESCRIPT_OSDK_SNIPPETS","computedVariables","functionInputValuesV1","handleFunctionInputValuesV1","functionInputValuesV2","handleFunctionInputValuesV2","actionParameterSampleValuesV1","handleActionParameterSampleValuesV1","actionParameterSampleValuesV2","handleActionParameterSampleValuesV2","propertyValueV1","handlePropertyValueV1","propertyValueV2","handlePropertyValueV2","propertyValueIncrementedV1","handlePropertyValueIncrementedV1","propertyValueIncrementedV2","handlePropertyValueIncrementedV2","propertiesV1","handlePropertiesV1","propertiesV2","handlePropertiesV2","primaryKeyPropertyV1","handlePrimaryKeyPropertyV1","primaryKeyPropertyV2","handlePrimaryKeyPropertyV2","primaryKeyPropertyValueV2","handlePrimaryKeyPropertyValueV2","linkedPropertiesV1","handleLinkedPropertiesV1","linkedPropertiesV2","handleLinkedPropertiesV2","linkedPrimaryKeyPropertyV1","handleLinkedPrimaryKeyPropertyV1","linkedPrimaryKeyPropertyV2","handleLinkedPrimaryKeyPropertyV2","arrayElementValue","handleArrayElementValue","SdkMajorVersion","rawFunctionInputValues","renderFunctionInputValues","V1","V2","rawActionTypeParameterValues","renderActionParameterValues","rawPropertyValue","renderPropertyValue","rawPropertyValueIncremented","renderArrayElementPropertyValue","propertyValue","majorVersion","Error","renderType","rawProperties","map","prop","apiName","value","rawPrimaryKeyProperty","rawLinkedProperties","rawLinkedPrimaryKeyProperty","type","Object","keys","parameters","length","entries","key","join","param","index","array","last","context","arraySubType","subtype","toString","getDateParameter","daysOffset","getTimestampParameter","primaryKeyValue","primaryKeyType","hasAttachments","objectTypeApiName","keyType","getMapKeyObjectName","valueType","getDisplayName","processObjectApiName","input","tokens","split","result","token","titleCase","toLowerCase","charAt","slice","toUpperCase","objectApiName","lastIndexOf","offsetDate","Date","setDate","getDate","toISOString"],"sources":["docs.ts"],"sourcesContent":["/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport type { SdkSnippets } from \"@osdk/docs-spec-core\";\nimport type {\n ActionParameterSampleValuesIR,\n ActionParameterSampleValueTypeIR,\n FunctionSampleParametersIR,\n FunctionSampleValueTypeIR,\n OSDK_SNIPPETS_SPEC,\n PropertySampleIR,\n PropertySampleValueTypeIR,\n} from \"@osdk/docs-spec-sdk\";\nimport { outdent } from \"outdent\";\nimport { snippets } from \"./generatedNoCheck/docsNoComputedVariables.js\";\n\nconst indentedNewLine = (spacesCount: number) => `\\n${\" \".repeat(spacesCount)}`;\n\nexport const TYPESCRIPT_OSDK_SNIPPETS: SdkSnippets<typeof OSDK_SNIPPETS_SPEC> =\n {\n ...snippets,\n computedVariables: {\n functionInputValuesV1: handleFunctionInputValuesV1,\n functionInputValuesV2: handleFunctionInputValuesV2,\n actionParameterSampleValuesV1: handleActionParameterSampleValuesV1,\n actionParameterSampleValuesV2: handleActionParameterSampleValuesV2,\n propertyValueV1: handlePropertyValueV1,\n propertyValueV2: handlePropertyValueV2,\n propertyValueIncrementedV1: handlePropertyValueIncrementedV1,\n propertyValueIncrementedV2: handlePropertyValueIncrementedV2,\n propertiesV1: handlePropertiesV1,\n propertiesV2: handlePropertiesV2,\n primaryKeyPropertyV1: handlePrimaryKeyPropertyV1,\n primaryKeyPropertyV2: handlePrimaryKeyPropertyV2,\n primaryKeyPropertyValueV2: handlePrimaryKeyPropertyValueV2,\n linkedPropertiesV1: handleLinkedPropertiesV1,\n linkedPropertiesV2: handleLinkedPropertiesV2,\n linkedPrimaryKeyPropertyV1: handleLinkedPrimaryKeyPropertyV1,\n linkedPrimaryKeyPropertyV2: handleLinkedPrimaryKeyPropertyV2,\n arrayElementValue: handleArrayElementValue,\n },\n };\n\n// SDK major version enum\nenum SdkMajorVersion {\n V1 = 1,\n V2 = 2,\n}\n\n// Helper functions for properties\nfunction handleFunctionInputValuesV1({\n rawFunctionInputValues,\n}: {\n rawFunctionInputValues?: FunctionSampleParametersIR;\n}) {\n return renderFunctionInputValues(rawFunctionInputValues, SdkMajorVersion.V1);\n}\n\nfunction handleFunctionInputValuesV2({\n rawFunctionInputValues,\n}: {\n rawFunctionInputValues?: FunctionSampleParametersIR;\n}) {\n return renderFunctionInputValues(rawFunctionInputValues, SdkMajorVersion.V2);\n}\n\nfunction handleActionParameterSampleValuesV1({\n rawActionTypeParameterValues,\n}: {\n rawActionTypeParameterValues?: ActionParameterSampleValuesIR;\n}) {\n return renderActionParameterValues(\n rawActionTypeParameterValues,\n SdkMajorVersion.V1,\n );\n}\n\nfunction handleActionParameterSampleValuesV2({\n rawActionTypeParameterValues,\n}: {\n rawActionTypeParameterValues?: ActionParameterSampleValuesIR;\n}) {\n return renderActionParameterValues(\n rawActionTypeParameterValues,\n SdkMajorVersion.V2,\n );\n}\n\nfunction handlePropertyValueV1(\n { rawPropertyValue }: { rawPropertyValue?: PropertySampleValueTypeIR },\n) {\n return renderPropertyValue(rawPropertyValue, SdkMajorVersion.V1);\n}\n\nfunction handlePropertyValueV2(\n { rawPropertyValue }: { rawPropertyValue?: PropertySampleValueTypeIR },\n) {\n return renderPropertyValue(rawPropertyValue, SdkMajorVersion.V2);\n}\n\nfunction handlePropertyValueIncrementedV1({\n rawPropertyValueIncremented,\n}: {\n rawPropertyValueIncremented?: PropertySampleValueTypeIR;\n}) {\n return renderPropertyValue(rawPropertyValueIncremented, SdkMajorVersion.V1);\n}\n\nfunction handlePropertyValueIncrementedV2({\n rawPropertyValueIncremented,\n}: {\n rawPropertyValueIncremented?: PropertySampleValueTypeIR;\n}) {\n return renderPropertyValue(rawPropertyValueIncremented, SdkMajorVersion.V2);\n}\n\nfunction handleArrayElementValue(\n { rawPropertyValue }: { rawPropertyValue?: PropertySampleValueTypeIR },\n) {\n return renderArrayElementPropertyValue(rawPropertyValue, SdkMajorVersion.V2);\n}\n\nfunction renderArrayElementPropertyValue(\n propertyValue: PropertySampleValueTypeIR | undefined,\n majorVersion: SdkMajorVersion,\n): string {\n if (propertyValue == null) {\n throw new Error(\"Cannot render a null property value\");\n }\n\n return renderType(propertyValue, majorVersion, \"arraySubType\");\n}\n\nfunction handlePropertiesV1(\n { rawProperties }: { rawProperties?: PropertySampleIR[] },\n) {\n if (rawProperties == null) {\n throw new Error(\"Cannot render with null rawProperties\");\n }\n\n return rawProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V1),\n }));\n}\n\nfunction handlePropertiesV2(\n { rawProperties }: { rawProperties?: PropertySampleIR[] },\n) {\n if (rawProperties == null) {\n throw new Error(\"Cannot render with null rawProperties\");\n }\n\n return rawProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V2),\n }));\n}\n\nfunction handlePrimaryKeyPropertyV1(\n { rawPrimaryKeyProperty }: { rawPrimaryKeyProperty?: PropertySampleIR },\n) {\n if (rawPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawPrimaryKeyProperty.apiName,\n value: renderPropertyValue(rawPrimaryKeyProperty.value, SdkMajorVersion.V1),\n };\n}\n\nfunction handlePrimaryKeyPropertyV2(\n { rawPrimaryKeyProperty }: { rawPrimaryKeyProperty?: PropertySampleIR },\n) {\n if (rawPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawPrimaryKeyProperty.apiName,\n value: renderPropertyValue(rawPrimaryKeyProperty.value, SdkMajorVersion.V2),\n };\n}\n\nfunction handlePrimaryKeyPropertyValueV2({\n rawPrimaryKeyProperty,\n}: {\n rawPrimaryKeyProperty?: PropertySampleIR;\n}) {\n if (rawPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawPrimaryKeyProperty\");\n }\n\n return renderPropertyValue(rawPrimaryKeyProperty.value, SdkMajorVersion.V2);\n}\n\nfunction handleLinkedPropertiesV1(\n { rawLinkedProperties }: { rawLinkedProperties?: PropertySampleIR[] },\n) {\n if (rawLinkedProperties == null) {\n throw new Error(\"Cannot render with null rawLinkedProperties\");\n }\n\n return rawLinkedProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V1),\n }));\n}\n\nfunction handleLinkedPropertiesV2(\n { rawLinkedProperties }: { rawLinkedProperties?: PropertySampleIR[] },\n) {\n if (rawLinkedProperties == null) {\n throw new Error(\"Cannot render with null rawLinkedProperties\");\n }\n\n return rawLinkedProperties.map(prop => ({\n apiName: prop.apiName,\n value: renderPropertyValue(prop.value, SdkMajorVersion.V2),\n }));\n}\n\nfunction handleLinkedPrimaryKeyPropertyV1({\n rawLinkedPrimaryKeyProperty,\n}: {\n rawLinkedPrimaryKeyProperty?: {\n apiName: string;\n value: PropertySampleValueTypeIR;\n type: string;\n };\n}) {\n if (rawLinkedPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawLinkedPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawLinkedPrimaryKeyProperty.apiName,\n value: renderPropertyValue(\n rawLinkedPrimaryKeyProperty.value,\n SdkMajorVersion.V1,\n ),\n type: rawLinkedPrimaryKeyProperty.type,\n };\n}\n\nfunction handleLinkedPrimaryKeyPropertyV2({\n rawLinkedPrimaryKeyProperty,\n}: {\n rawLinkedPrimaryKeyProperty?: {\n apiName: string;\n value: PropertySampleValueTypeIR;\n type: string;\n };\n}) {\n if (rawLinkedPrimaryKeyProperty == null) {\n throw new Error(\"Cannot render with null rawLinkedPrimaryKeyProperty\");\n }\n\n return {\n apiName: rawLinkedPrimaryKeyProperty.apiName,\n value: renderPropertyValue(\n rawLinkedPrimaryKeyProperty.value,\n SdkMajorVersion.V2,\n ),\n type: rawLinkedPrimaryKeyProperty.type,\n };\n}\n\n// Common function to render function input values for any version\nfunction renderFunctionInputValues(\n rawFunctionInputValues: FunctionSampleParametersIR | undefined,\n majorVersion: SdkMajorVersion,\n): string {\n if (rawFunctionInputValues == null) {\n throw new Error(\"Cannot render a null rawFunctionInputValues\");\n }\n if (Object.keys(rawFunctionInputValues.parameters).length === 0) {\n return \"\";\n }\n\n return outdent`\n {\n ${\n Object.entries(rawFunctionInputValues.parameters)\n .map(([key, value]) =>\n `\"${key}\": ${renderType(value, majorVersion, \"functionInput\")}`\n )\n .join(`,${indentedNewLine(4)}`)\n }\n }`;\n}\n\n// Common function to render action parameter values for any version\nfunction renderActionParameterValues(\n rawActionTypeParameterValues: ActionParameterSampleValuesIR | undefined,\n majorVersion: SdkMajorVersion,\n): Array<{ key: string; value: string; last: boolean }> {\n if (rawActionTypeParameterValues == null) {\n throw new Error(\"Cannot render a null rawActionTypeParameterValues\");\n }\n\n return rawActionTypeParameterValues.map((param, index, array) => ({\n key: param.key,\n value: renderType(param.value, majorVersion, \"actionParameter\"),\n last: index === array.length - 1,\n }));\n}\n\n// Function to render property values\nfunction renderPropertyValue(\n propertyValue: PropertySampleValueTypeIR | undefined,\n majorVersion: SdkMajorVersion,\n): string {\n if (propertyValue == null) {\n throw new Error(\"Cannot render a null property value\");\n }\n\n return renderType(propertyValue, majorVersion, \"property\");\n}\n\n// Unified render function for all types\nfunction renderType(\n type:\n | ActionParameterSampleValueTypeIR\n | FunctionSampleValueTypeIR\n | PropertySampleValueTypeIR,\n majorVersion: SdkMajorVersion,\n context: \"property\" | \"functionInput\" | \"actionParameter\" | \"arraySubType\",\n): string {\n if (type == null) {\n throw new Error(\"Cannot render a null type value\");\n }\n\n switch (type.type) {\n case \"array\":\n case \"set\":\n case \"list\":\n const arraySubType = renderType(type.subtype, majorVersion, context);\n return context === \"arraySubType\" ? arraySubType : `[${arraySubType}]`;\n case \"boolean\":\n return type.value ? \"true\" : \"false\";\n case \"byte\":\n case \"integer\":\n case \"long\":\n case \"short\":\n return type.value.toString();\n case \"decimal\":\n case \"double\":\n case \"float\":\n if (context === \"actionParameter\") {\n return `\"${type.value.toString()}\"`;\n }\n return type.value.toString();\n case \"date\":\n return getDateParameter(majorVersion, type.daysOffset);\n case \"timestamp\":\n return getTimestampParameter(majorVersion, type.daysOffset);\n case \"object\":\n const primaryKeyValue = type.primaryKeyType === \"string\"\n ? \"\\\"primaryKeyValue\\\"\"\n : \"primaryKeyValue\";\n if (context === \"actionParameter\") {\n return majorVersion >= SdkMajorVersion.V2\n ? `\"primaryKeyValue\" // or myObjectInstance`\n : `{ __primaryKey: ${primaryKeyValue}, /* other properties */ }`;\n }\n return primaryKeyValue;\n case \"anonymousCustomType\":\n case \"customType\":\n return \"{}\";\n case \"attachment\":\n return type.hasAttachments ? \"attachment\" : \"{}\";\n case \"interface\":\n case \"marking\":\n return \"{}\";\n case \"mediaReference\":\n return context === \"actionParameter\"\n ? \"mediaUpload\"\n : \"mediaReferenceRid\";\n case \"objectType\":\n return `\"${type.objectTypeApiName}\"`;\n case \"map\":\n if (type.keyType.type === \"object\") {\n return `{[${\n getMapKeyObjectName(type.keyType.apiName)\n }.$objectSpecifier]: ${\n renderType(type.valueType, majorVersion, context)\n }}`;\n }\n return `{${\n renderType(\n type.valueType,\n majorVersion,\n context,\n )\n }: ${renderType(type.valueType, majorVersion, context)}}`;\n\n case \"string\":\n case \"unknown\":\n default:\n return `\"${type.value ?? \"value\"}\"`;\n }\n}\n\nfunction getMapKeyObjectName(apiName?: string) {\n if (apiName == null) {\n return \"osdkObject\";\n }\n return `${getDisplayName(processObjectApiName(apiName))}OsdkObject`;\n}\n\nfunction getDisplayName(input: string): string {\n const tokens = input.split(/[_-]|(?<=[a-z])(?=[A-Z])/);\n const result = tokens.map(token => titleCase(token.toLowerCase())).join(\"\");\n return result.charAt(0).toLowerCase() + result.slice(1);\n}\n\nfunction titleCase(token: string) {\n return (token[0] ?? \"\").toUpperCase() + token.slice(1);\n}\n\n// For objects that have namespaces prefixed to their api name, we remove it and only return the last portion\n// As that is what the TS OSDK uses to generate identifiers for objects\nfunction processObjectApiName(objectApiName: string) {\n const last = objectApiName.lastIndexOf(\".\");\n if (last === -1) {\n return objectApiName;\n }\n return objectApiName.slice(last + 1);\n}\n\n// Generic helper functions for date and timestamp\nfunction getDateParameter(\n majorVersion: SdkMajorVersion,\n daysOffset = 0,\n): string {\n const offsetDate = new Date();\n offsetDate.setDate(offsetDate.getDate() + daysOffset);\n const hasOffset = daysOffset !== 0;\n\n if (majorVersion >= SdkMajorVersion.V2) {\n return `\"${offsetDate.toISOString().split(\"T\")[0]}\"`;\n }\n return hasOffset\n ? `LocalDate.now().plusDays(${daysOffset})`\n : \"LocalDate.now()\";\n}\n\nfunction getTimestampParameter(\n majorVersion: SdkMajorVersion,\n daysOffset = 0,\n): string {\n const offsetDate = new Date();\n offsetDate.setDate(offsetDate.getDate() + daysOffset);\n const hasOffset = daysOffset !== 0;\n\n if (majorVersion >= SdkMajorVersion.V2) {\n return `\"${offsetDate.toISOString()}\"`;\n }\n return hasOffset\n ? `Timestamp.now().plusDays(${daysOffset})`\n : \"Timestamp.now()\";\n}\n"],"mappings":"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","ignoreList":[]}
@@ -586,15 +586,15 @@ export const snippets = {
586
586
  "2.6.0": {
587
587
  "snippets": {
588
588
  "applyAction": [{
589
- "template": "// Edit this import if your client location differs\nimport { client } from \"./client\";\n{{#hasAttachmentProperty}}\nimport type { AttachmentUpload {{#hasMediaParameter}}, MediaReference, MediaUpload {{/hasMediaParameter}} } from \"@osdk/api\";\n{{/hasAttachmentProperty}}\n{{^hasAttachmentProperty}}{{#hasMediaParameter}}\nimport type { MediaReference, MediaUpload } from \"@osdk/api\";\n{{/hasMediaParameter}}{{/hasAttachmentProperty}}\n{{#hasAttachmentProperty}}\nimport { createAttachmentUpload } from \"@osdk/client\";\n{{/hasAttachmentProperty}}\nimport { {{actionApiName}} {{#hasMediaParameter}}, {{objectType}} {{/hasMediaParameter}} } from \"{{{packageName}}}\";\n\nasync function callAction() {\n{{#hasAttachmentProperty}}\n // Create attachment upload\n const attachmentFile = await fetch(\"file.json\");\n const attachmentBlob = await attachmentFile.blob();\n const attachment: AttachmentUpload = createAttachmentUpload(attachmentBlob, \"myFile\");\n // alternatively, you can get the Rid from the attachment property on the object type you are modifying \n // const attachmentRid = objectTypeWithAttachment.{attachmentProperty}?.rid;\n{{/hasAttachmentProperty}}\n{{#hasMediaParameter}}\n // Use existing media reference\n const objectPage = await client({{objectType}}).fetchPage();\n const mediaReference: MediaReference = objectPage.data[0].{{property}}!.getMediaReference();\n\n // Upload media data\n const mediaFile = await fetch(\"media.mp4\");\n const mediaBlob = await mediaFile.blob();\n const mediaUpload: MediaUpload = { data: mediaBlob, fileName: \"myMedia\" };\n\n const mediaReferenceOrUpload = Math.random() < 0.5 ? mediaReference : mediaUpload;\n\n{{/hasMediaParameter}}\n const result = await client({{actionApiName}}).applyAction(\n {\n {{#actionParameterSampleValuesV2}}\n \"{{key}}\": {{{value}}},\n {{/actionParameterSampleValuesV2}}\n },\n {\n $returnEdits: true,\n }\n );\n if (result.type === \"edits\") {\n // use the result object to report back on action results\n const updatedObject = result.editedObjectTypes[0];\n console.log(\"Updated object\", updatedObject);\n }\n}",
589
+ "template": "// Edit this import if your client location differs\nimport { client } from \"./client\";\n{{#hasAttachmentProperty}}\nimport type { AttachmentUpload {{#hasMediaParameter}}, MediaReference, MediaUpload {{/hasMediaParameter}} } from \"@osdk/api\";\n{{/hasAttachmentProperty}}\n{{^hasAttachmentProperty}}{{#hasMediaParameter}}\nimport type { MediaReference, MediaUpload } from \"@osdk/api\";\n{{/hasMediaParameter}}{{/hasAttachmentProperty}}\n{{#hasAttachmentProperty}}\nimport { createAttachmentUpload } from \"@osdk/client\";\n{{/hasAttachmentProperty}}\nimport { {{actionApiName}} {{#hasMediaParameter}}, {{objectType}} {{/hasMediaParameter}} } from \"{{{packageName}}}\";\n\nasync function callAction() {\n{{#hasAttachmentProperty}}\n // Create attachment upload\n const attachmentFile = await fetch(\"file.json\");\n const attachmentBlob = await attachmentFile.blob();\n const attachment: AttachmentUpload = createAttachmentUpload(attachmentBlob, \"myFile\");\n // alternatively, you can get the Rid from the attachment property on the object type you are modifying \n // const attachmentRid = objectTypeWithAttachment.{attachmentProperty}?.rid;\n\n{{/hasAttachmentProperty}}\n{{#hasMediaParameter}}\n // You can upload media data via your Action\n const mediaFile = await fetch(\"media.mp4\");\n const mediaBlob = await mediaFile.blob();\n const mediaUpload: MediaUpload = { data: mediaBlob, fileName: \"myMedia\" };\n \n // You can also pass an existing media reference into your Action\n const objectPage = await client({{objectType}}).fetchPage();\n const mediaReference: MediaReference = objectPage.data[0].{{property}}!.getMediaReference();\n\n{{/hasMediaParameter}}\n const result = await client({{actionApiName}}).applyAction(\n {\n {{#actionParameterSampleValuesV2}}\n \"{{key}}\": {{{value}}},\n {{/actionParameterSampleValuesV2}}\n },\n {\n $returnEdits: true,\n }\n );\n if (result.type === \"edits\") {\n // use the result object to report back on action results\n const updatedObject = result.editedObjectTypes[0];\n console.log(\"Updated object\", updatedObject);\n }\n}",
590
590
  "computedVariables": ["actionParameterSampleValuesV2"]
591
591
  }],
592
592
  "batchApplyAction": [{
593
- "template": "// Edit this import if your client location differs\nimport { client } from \"./client\";\n{{#hasAttachmentProperty}}\nimport type { AttachmentUpload {{#hasMediaParameter}}, MediaReference, MediaUpload {{/hasMediaParameter}} } from \"@osdk/api\";\n{{/hasAttachmentProperty}}\n{{^hasAttachmentProperty}}{{#hasMediaParameter}}\nimport type { MediaReference, MediaUpload } from \"@osdk/api\";\n{{/hasMediaParameter}}{{/hasAttachmentProperty}}\n{{#hasAttachmentProperty}}\nimport { createAttachmentUpload } from \"@osdk/client\";\n{{/hasAttachmentProperty}}\nimport { {{actionApiName}} {{#hasMediaParameter}}, {{objectType}} {{/hasMediaParameter}} } from \"{{{packageName}}}\";\n\nasync function callBatchAction() {\n{{#hasAttachmentProperty}}\n // Create attachment upload\n const attachmentFile = await fetch(\"file.json\");\n const attachmentBlob = await attachmentFile.blob();\n const attachment: AttachmentUpload = createAttachmentUpload(attachmentBlob, \"myFile\");\n{{/hasAttachmentProperty}}\n{{#hasMediaParameter}}\n // Use existing media reference\n const objectPage = await client({{objectType}}).fetchPage();\n const mediaReference: MediaReference = objectPage.data[0].{{property}}!.getMediaReference();\n\n // Upload media data\n const mediaFile = await fetch(\"media.mp4\");\n const mediaBlob = await mediaFile.blob();\n const mediaUpload: MediaUpload = { data: mediaBlob, fileName: \"myMedia\" };\n\n const mediaReferenceOrUpload = Math.random() < 0.5 ? mediaReference : mediaUpload;\n \n{{/hasMediaParameter}}\n const result = await client({{actionApiName}}).batchApplyAction([\n {\n {{#actionParameterSampleValuesV2}}\n \"{{key}}\": {{{value}}},\n {{/actionParameterSampleValuesV2}}\n },\n {\n {{#actionParameterSampleValuesV2}}\n \"{{key}}\": {{{value}}},\n {{/actionParameterSampleValuesV2}}\n },\n ],\n {\n $returnEdits: true,\n }\n );\n if (result.type === \"edits\") {\n // use the result object to report back on action results\n const updatedObject = result.editedObjectTypes[0];\n console.log(\"Updated object\", updatedObject);\n }\n}",
593
+ "template": "// Edit this import if your client location differs\nimport { client } from \"./client\";\n{{#hasAttachmentProperty}}\nimport type { AttachmentUpload {{#hasMediaParameter}}, MediaReference, MediaUpload {{/hasMediaParameter}} } from \"@osdk/api\";\n{{/hasAttachmentProperty}}\n{{^hasAttachmentProperty}}{{#hasMediaParameter}}\nimport type { MediaReference, MediaUpload } from \"@osdk/api\";\n{{/hasMediaParameter}}{{/hasAttachmentProperty}}\n{{#hasAttachmentProperty}}\nimport { createAttachmentUpload } from \"@osdk/client\";\n{{/hasAttachmentProperty}}\nimport { {{actionApiName}} {{#hasMediaParameter}}, {{objectType}} {{/hasMediaParameter}} } from \"{{{packageName}}}\";\n\nasync function callBatchAction() {\n{{#hasAttachmentProperty}}\n // Create attachment upload\n const attachmentFile = await fetch(\"file.json\");\n const attachmentBlob = await attachmentFile.blob();\n const attachment: AttachmentUpload = createAttachmentUpload(attachmentBlob, \"myFile\");\n\n{{/hasAttachmentProperty}}\n{{#hasMediaParameter}}\n // You can upload media data via your Action\n const mediaFile = await fetch(\"media.mp4\");\n const mediaBlob = await mediaFile.blob();\n const mediaUpload: MediaUpload = { data: mediaBlob, fileName: \"myMedia\" };\n \n // You can also pass an existing media reference into your Action\n const objectPage = await client({{objectType}}).fetchPage();\n const mediaReference: MediaReference = objectPage.data[0].{{property}}!.getMediaReference();\n \n{{/hasMediaParameter}}\n const result = await client({{actionApiName}}).batchApplyAction([\n {\n {{#actionParameterSampleValuesV2}}\n \"{{key}}\": {{{value}}},\n {{/actionParameterSampleValuesV2}}\n },\n {\n {{#actionParameterSampleValuesV2}}\n \"{{key}}\": {{{value}}},\n {{/actionParameterSampleValuesV2}}\n },\n ],\n {\n $returnEdits: true,\n }\n );\n if (result.type === \"edits\") {\n // use the result object to report back on action results\n const updatedObject = result.editedObjectTypes[0];\n console.log(\"Updated object\", updatedObject);\n }\n}",
594
594
  "computedVariables": ["actionParameterSampleValuesV2"]
595
595
  }],
596
596
  "uploadMediaOntologyEdits": [{
597
- "template": "import type { Client } from \"@osdk/client\";\nimport { {{objectType}} } from \"{{{packageName}}}\";\nimport type { Edits } from \"@osdk/functions\";\nimport { createEditBatch, uploadMedia } from \"@osdk/functions\";\n\nasync function createObject(client: Client): Promise<Edits.Object<{{objectType}}>[]> {\n const batch = createEditBatch<Edits.Object<{{objectType}}>>(client);\n \n const blob = new Blob([\"Hello, world\"], { type: \"text/plain\" });\n const mediaReference = await uploadMedia(client, { data: blob, fileName: \"foundryFile.txt\" });\n\n // @ts-ignore\n batch.create({{objectType}}, {\n // Set required properties here...\n // Media properties can be set to `mediaReference`\n });\n\n return batch.getEdits();\n}\n\nexport default createObject;"
597
+ "template": "import type { Client } from \"@osdk/client\";\nimport { {{objectType}} } from \"{{{packageName}}}\";\nimport type { Edits } from \"@osdk/functions\";\nimport { createEditBatch, uploadMedia } from \"@osdk/functions\";\n\nasync function createObject(client: Client): Promise<Edits.Object<{{objectType}}>[]> {\n const batch = createEditBatch<Edits.Object<{{objectType}}>>(client);\n \n const blob = new Blob([\"Hello, world\"], { type: \"text/plain\" });\n const mediaReference = await uploadMedia(client, { data: blob, fileName: \"foundryFile.txt\" });\n\n // @ts-ignore \n batch.create({{objectType}}, { myMediaProperty: mediaReference, /* Other properties... */ });\n\n return batch.getEdits();\n}\n\nexport default createObject;"
598
598
  }]
599
599
  }
600
600
  }