@shisyamo4131/air-guard-v2-schemas 2.3.7-dev.33 → 2.3.7-dev.35

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/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export { default as Agreement } from "./src/Agreement.js";
2
2
  export { default as ArrangementNotification } from "./src/ArrangementNotification.js";
3
3
  export { default as Billing } from "./src/Billing.js";
4
+ export { default as Certification } from "./src/Certification.js";
4
5
  export { default as Company } from "./src/Company.js";
5
6
  export { default as Customer, CustomerMinimal } from "./src/Customer.js";
6
7
  export { default as CutoffDate } from "./src/utils/CutoffDate.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shisyamo4131/air-guard-v2-schemas",
3
- "version": "2.3.7-dev.33",
3
+ "version": "2.3.7-dev.35",
4
4
  "description": "Schemas for AirGuard V2",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -451,9 +451,9 @@ export const fieldDefinitions = {
451
451
  attrs: {
452
452
  counter: true,
453
453
  inputType: "zipcode",
454
- "onUpdate:address": (item, updater) => {
454
+ "onUpdate:address": ({ item, updateProperties }) => {
455
455
  return (result) => {
456
- updater({
456
+ updateProperties({
457
457
  prefCode: result.prefcode,
458
458
  prefecture: result.address1,
459
459
  city: result.address2,