@shisyamo4131/air-guard-v2-schemas 1.3.1-dev.17 → 1.3.1-dev.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shisyamo4131/air-guard-v2-schemas",
3
- "version": "1.3.1-dev.17",
3
+ "version": "1.3.1-dev.18",
4
4
  "description": "Schemas for AirGuard V2",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/src/Billing.js CHANGED
@@ -38,8 +38,8 @@ const classProps = {
38
38
  customerId: defField("customerId", { required: true }),
39
39
  siteId: defField("siteId", { required: true }),
40
40
  billingMonth: defField("oneLine", { required: true }),
41
- billingDateAt: defField("date"),
42
- paymentDueDateAt: defField("date"),
41
+ billingDateAt: defField("dateAt"),
42
+ paymentDueDateAt: defField("dateAt"),
43
43
 
44
44
  // 入金管理用配列(現時点では未使用 将来の拡張用)
45
45
  paymentRecords: defField("array", { default: [] }), // Not implemented yet
@@ -210,6 +210,18 @@ export const fieldDefinitions = {
210
210
  label: "市区町村",
211
211
  length: 10,
212
212
  },
213
+ customerId: {
214
+ ...generalDefinitions.oneLine,
215
+ label: "取引先",
216
+ component: {
217
+ name: "air-autocomplete-api",
218
+ attrs: {
219
+ itemValue: "docId",
220
+ itemTitle: "name",
221
+ noFilter: true,
222
+ },
223
+ },
224
+ },
213
225
  displayName: {
214
226
  ...generalDefinitions.oneLine,
215
227
  label: "表示名",