@arrirpc/codegen-swift 0.73.0 → 0.74.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -1
  2. package/package.json +2 -2
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import fs from 'node:fs';
2
- import { removeDisallowedChars, pascalCase, stringStartsWithNumber, camelCase, isSchemaFormRef, isServiceDefinition, isRpcDefinition, defineGeneratorPlugin, unflattenProcedures, isSchemaFormType, isSchemaFormEnum, isSchemaFormProperties, isSchemaFormElements, isSchemaFormValues, isSchemaFormDiscriminator } from '@arrirpc/codegen-utils';
2
+ import { removeDisallowedChars, camelCase, stringStartsWithNumber, pascalCase, isSchemaFormRef, isServiceDefinition, isRpcDefinition, defineGeneratorPlugin, unflattenProcedures, isSchemaFormType, isSchemaFormEnum, isSchemaFormProperties, isSchemaFormElements, isSchemaFormValues, isSchemaFormDiscriminator } from '@arrirpc/codegen-utils';
3
3
 
4
4
  function isNullableType(schema, context) {
5
5
  return schema.nullable === true || context.isOptional === true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arrirpc/codegen-swift",
3
- "version": "0.73.0",
3
+ "version": "0.74.1",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -22,7 +22,7 @@
22
22
  "dist"
23
23
  ],
24
24
  "dependencies": {
25
- "@arrirpc/codegen-utils": "0.73.0"
25
+ "@arrirpc/codegen-utils": "0.74.1"
26
26
  },
27
27
  "devDependencies": {}
28
28
  }