@xxmachina/common 19.0.0-preview.9 → 19.1.0
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/_shared/auth/index.d.ts +8 -1
- package/_shared/auth/passports/anonymous/index.d.ts +8 -1
- package/_shared/auth/passports/firebase/index.d.ts +19 -2
- package/_shared/auth/passports/internal/index.d.ts +17 -1
- package/_shared/auth/passports/msal/index.d.ts +26 -2
- package/_shared/meta/index.d.ts +8 -0
- package/_shared/meta/redis/index.d.ts +39 -2
- package/auth/index.d.ts +16 -1
- package/azure-auth/index.d.ts +41 -2
- package/domain/builder/index.d.ts +81 -0
- package/domain/builder/screen-item/index.d.ts +7 -1
- package/domain/index.d.ts +2 -1
- package/domain/models/index.d.ts +377 -13
- package/fesm2022/xxmachina-common-_shared-auth-passports-anonymous.mjs +20 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-anonymous.mjs.map +1 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-firebase.mjs +41 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-firebase.mjs.map +1 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-internal.mjs +34 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-internal.mjs.map +1 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-msal.mjs +49 -0
- package/fesm2022/xxmachina-common-_shared-auth-passports-msal.mjs.map +1 -0
- package/fesm2022/xxmachina-common-_shared-auth.mjs +25 -0
- package/fesm2022/xxmachina-common-_shared-auth.mjs.map +1 -0
- package/fesm2022/xxmachina-common-_shared-meta-redis.mjs +99 -0
- package/fesm2022/xxmachina-common-_shared-meta-redis.mjs.map +1 -0
- package/fesm2022/xxmachina-common-_shared-meta.mjs +26 -0
- package/fesm2022/xxmachina-common-_shared-meta.mjs.map +1 -0
- package/fesm2022/xxmachina-common-auth.mjs +17 -0
- package/fesm2022/xxmachina-common-auth.mjs.map +1 -0
- package/fesm2022/xxmachina-common-azure-auth.mjs +160 -0
- package/fesm2022/xxmachina-common-azure-auth.mjs.map +1 -0
- package/{domain/builder/screen-item/screen-item.builder.js → fesm2022/xxmachina-common-domain-builder-screen-item.mjs} +10 -11
- package/fesm2022/xxmachina-common-domain-builder-screen-item.mjs.map +1 -0
- package/fesm2022/xxmachina-common-domain-builder.mjs +494 -0
- package/fesm2022/xxmachina-common-domain-builder.mjs.map +1 -0
- package/fesm2022/xxmachina-common-domain-models.mjs +842 -0
- package/fesm2022/xxmachina-common-domain-models.mjs.map +1 -0
- package/fesm2022/xxmachina-common-domain.mjs +7 -0
- package/fesm2022/xxmachina-common-domain.mjs.map +1 -0
- package/fesm2022/xxmachina-common-firebase-auth.mjs +36 -0
- package/fesm2022/xxmachina-common-firebase-auth.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-converters-google.mjs +39 -0
- package/fesm2022/xxmachina-common-infra-converters-google.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-external-data-connect.mjs +13 -0
- package/fesm2022/xxmachina-common-infra-external-data-connect.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-external-quick-js.mjs +61 -0
- package/fesm2022/xxmachina-common-infra-external-quick-js.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-external-resend.mjs +10 -0
- package/fesm2022/xxmachina-common-infra-external-resend.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-external.mjs +36 -0
- package/fesm2022/xxmachina-common-infra-external.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-query-firestore.mjs +34 -0
- package/fesm2022/xxmachina-common-infra-query-firestore.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-query-hasura.mjs +20 -0
- package/fesm2022/xxmachina-common-infra-query-hasura.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-repository-dataconnect.mjs +18 -0
- package/fesm2022/xxmachina-common-infra-repository-dataconnect.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-repository-firestore.mjs +74 -0
- package/fesm2022/xxmachina-common-infra-repository-firestore.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-repository-hasura.mjs +41 -0
- package/fesm2022/xxmachina-common-infra-repository-hasura.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra-repository-notion.mjs +113 -0
- package/fesm2022/xxmachina-common-infra-repository-notion.mjs.map +1 -0
- package/fesm2022/xxmachina-common-infra.mjs +378 -0
- package/fesm2022/xxmachina-common-infra.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-domain-builders.mjs +79 -0
- package/fesm2022/xxmachina-common-invoice-domain-builders.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-domain-models.mjs +428 -0
- package/fesm2022/xxmachina-common-invoice-domain-models.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-domain-resolvers.mjs +41 -0
- package/fesm2022/xxmachina-common-invoice-domain-resolvers.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-domain.mjs +8 -0
- package/fesm2022/xxmachina-common-invoice-domain.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-usecase-contract.mjs +27 -0
- package/fesm2022/xxmachina-common-invoice-usecase-contract.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-usecase-invoice.mjs +191 -0
- package/fesm2022/xxmachina-common-invoice-usecase-invoice.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-usecase-order.mjs +36 -0
- package/fesm2022/xxmachina-common-invoice-usecase-order.mjs.map +1 -0
- package/fesm2022/xxmachina-common-invoice-usecase-partner.mjs +36 -0
- package/fesm2022/xxmachina-common-invoice-usecase-partner.mjs.map +1 -0
- package/fesm2022/xxmachina-common-services-graphql.mjs +60 -0
- package/fesm2022/xxmachina-common-services-graphql.mjs.map +1 -0
- package/fesm2022/xxmachina-common-services-query-config.mjs +44 -0
- package/fesm2022/xxmachina-common-services-query-config.mjs.map +1 -0
- package/fesm2022/xxmachina-common-services-query.mjs +65 -0
- package/fesm2022/xxmachina-common-services-query.mjs.map +1 -0
- package/fesm2022/xxmachina-common-services-speech.mjs +178 -0
- package/fesm2022/xxmachina-common-services-speech.mjs.map +1 -0
- package/fesm2022/xxmachina-common-services-transformer.mjs +27 -0
- package/fesm2022/xxmachina-common-services-transformer.mjs.map +1 -0
- package/fesm2022/xxmachina-common-stores-firestore.mjs +33 -0
- package/fesm2022/xxmachina-common-stores-firestore.mjs.map +1 -0
- package/fesm2022/xxmachina-common-stores-hasura.mjs +32 -0
- package/fesm2022/xxmachina-common-stores-hasura.mjs.map +1 -0
- package/fesm2022/xxmachina-common-stores-inmemory.mjs +102 -0
- package/fesm2022/xxmachina-common-stores-inmemory.mjs.map +1 -0
- package/fesm2022/xxmachina-common-stores.mjs +16 -0
- package/fesm2022/xxmachina-common-stores.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase-assistant.mjs +67 -0
- package/fesm2022/xxmachina-common-usecase-assistant.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase-database.mjs +95 -0
- package/fesm2022/xxmachina-common-usecase-database.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase-graphql.mjs +51 -0
- package/fesm2022/xxmachina-common-usecase-graphql.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase-link.mjs +26 -0
- package/fesm2022/xxmachina-common-usecase-link.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase-project.mjs +35 -0
- package/fesm2022/xxmachina-common-usecase-project.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase-spec.mjs +45 -0
- package/fesm2022/xxmachina-common-usecase-spec.mjs.map +1 -0
- package/fesm2022/xxmachina-common-usecase.mjs +198 -0
- package/fesm2022/xxmachina-common-usecase.mjs.map +1 -0
- package/{utils/crypto.js → fesm2022/xxmachina-common-utils-crypto.mjs} +10 -12
- package/fesm2022/xxmachina-common-utils-crypto.mjs.map +1 -0
- package/{utils/extract-display-fields.js → fesm2022/xxmachina-common-utils.mjs} +7 -4
- package/fesm2022/xxmachina-common-utils.mjs.map +1 -0
- package/fesm2022/xxmachina-common.mjs +6 -0
- package/fesm2022/xxmachina-common.mjs.map +1 -0
- package/firebase-auth/index.d.ts +6 -0
- package/index.d.ts +1 -0
- package/infra/converters/google/index.d.ts +17 -0
- package/infra/external/data-connect/index.d.ts +7 -0
- package/infra/external/index.d.ts +24 -0
- package/infra/external/quick-js/index.d.ts +24 -0
- package/infra/external/resend/index.d.ts +16 -0
- package/infra/index.d.ts +218 -0
- package/infra/query/firestore/index.d.ts +20 -0
- package/infra/query/hasura/index.d.ts +9 -0
- package/infra/repository/dataconnect/index.d.ts +28 -0
- package/infra/repository/firestore/index.d.ts +42 -0
- package/infra/repository/hasura/index.d.ts +24 -0
- package/infra/repository/notion/index.d.ts +101 -0
- package/invoice/domain/builders/index.d.ts +31 -0
- package/invoice/domain/index.d.ts +3 -0
- package/invoice/domain/models/index.d.ts +78 -0
- package/{domain/resolvers/invoice.resolver.d.ts → invoice/domain/resolvers/index.d.ts} +6 -2
- package/invoice/usecase/contract/index.d.ts +14 -0
- package/invoice/usecase/invoice/index.d.ts +34 -0
- package/invoice/usecase/order/index.d.ts +16 -0
- package/invoice/usecase/partner/index.d.ts +16 -0
- package/package.json +238 -14
- package/services/graphql/index.d.ts +32 -0
- package/services/query/config/index.d.ts +18 -0
- package/services/query/index.d.ts +29 -0
- package/services/speech/index.d.ts +37 -0
- package/services/transformer/index.d.ts +14 -0
- package/stores/firestore/index.d.ts +17 -0
- package/stores/hasura/index.d.ts +17 -0
- package/stores/index.d.ts +22 -40
- package/stores/inmemory/index.d.ts +33 -0
- package/usecase/assistant/index.d.ts +18 -1
- package/usecase/database/index.d.ts +39 -1
- package/usecase/graphql/index.d.ts +17 -1
- package/usecase/index.d.ts +73 -1
- package/usecase/link/index.d.ts +13 -1
- package/usecase/project/index.d.ts +16 -1
- package/usecase/spec/index.d.ts +17 -1
- package/utils/crypto/index.d.ts +9 -0
- package/utils/index.d.ts +5 -1
- package/README.md +0 -11
- package/_shared/auth/auth.module.d.ts +0 -6
- package/_shared/auth/auth.module.js +0 -22
- package/_shared/auth/auth.module.js.map +0 -1
- package/_shared/auth/index.js +0 -5
- package/_shared/auth/index.js.map +0 -1
- package/_shared/auth/passports/anonymous/anonymous.strategy.d.ts +0 -6
- package/_shared/auth/passports/anonymous/anonymous.strategy.js +0 -19
- package/_shared/auth/passports/anonymous/anonymous.strategy.js.map +0 -1
- package/_shared/auth/passports/anonymous/index.js +0 -5
- package/_shared/auth/passports/anonymous/index.js.map +0 -1
- package/_shared/auth/passports/firebase/firebase.guard.d.ts +0 -6
- package/_shared/auth/passports/firebase/firebase.guard.js +0 -23
- package/_shared/auth/passports/firebase/firebase.guard.js.map +0 -1
- package/_shared/auth/passports/firebase/firebase.strategy.d.ts +0 -10
- package/_shared/auth/passports/firebase/firebase.strategy.js +0 -22
- package/_shared/auth/passports/firebase/firebase.strategy.js.map +0 -1
- package/_shared/auth/passports/firebase/index.js +0 -6
- package/_shared/auth/passports/firebase/index.js.map +0 -1
- package/_shared/auth/passports/internal/index.js +0 -5
- package/_shared/auth/passports/internal/index.js.map +0 -1
- package/_shared/auth/passports/internal/internal.strategy.d.ts +0 -14
- package/_shared/auth/passports/internal/internal.strategy.js +0 -33
- package/_shared/auth/passports/internal/internal.strategy.js.map +0 -1
- package/_shared/auth/passports/msal/index.js +0 -6
- package/_shared/auth/passports/msal/index.js.map +0 -1
- package/_shared/auth/passports/msal/msal.guard.d.ts +0 -4
- package/_shared/auth/passports/msal/msal.guard.js +0 -13
- package/_shared/auth/passports/msal/msal.guard.js.map +0 -1
- package/_shared/auth/passports/msal/msal.strategy.d.ts +0 -17
- package/_shared/auth/passports/msal/msal.strategy.js +0 -43
- package/_shared/auth/passports/msal/msal.strategy.js.map +0 -1
- package/_shared/meta/decorators.d.ts +0 -4
- package/_shared/meta/decorators.js +0 -25
- package/_shared/meta/decorators.js.map +0 -1
- package/_shared/meta/redis/index.js +0 -6
- package/_shared/meta/redis/index.js.map +0 -1
- package/_shared/meta/redis/redis.config.d.ts +0 -9
- package/_shared/meta/redis/redis.config.js +0 -10
- package/_shared/meta/redis/redis.config.js.map +0 -1
- package/_shared/meta/redis/redis.repository.d.ts +0 -23
- package/_shared/meta/redis/redis.repository.js +0 -108
- package/_shared/meta/redis/redis.repository.js.map +0 -1
- package/auth/auth.service.d.ts +0 -10
- package/auth/auth.service.js +0 -12
- package/auth/auth.service.js.map +0 -1
- package/auth/index.js +0 -5
- package/auth/index.js.map +0 -1
- package/azure-auth/auth.di.d.ts +0 -4
- package/azure-auth/auth.di.js +0 -56
- package/azure-auth/auth.di.js.map +0 -1
- package/azure-auth/auth.service.d.ts +0 -32
- package/azure-auth/auth.service.js +0 -115
- package/azure-auth/auth.service.js.map +0 -1
- package/azure-auth/index.js +0 -6
- package/azure-auth/index.js.map +0 -1
- package/domain/builder/command/command.builder.d.ts +0 -5
- package/domain/builder/command/command.builder.js +0 -30
- package/domain/builder/command/command.builder.js.map +0 -1
- package/domain/builder/command/index.d.ts +0 -1
- package/domain/builder/command/index.js +0 -5
- package/domain/builder/command/index.js.map +0 -1
- package/domain/builder/command-action/command-action.builder.d.ts +0 -40
- package/domain/builder/command-action/command-action.builder.js +0 -139
- package/domain/builder/command-action/command-action.builder.js.map +0 -1
- package/domain/builder/command-action/index.d.ts +0 -1
- package/domain/builder/command-action/index.js +0 -5
- package/domain/builder/command-action/index.js.map +0 -1
- package/domain/builder/er/er.builder.d.ts +0 -19
- package/domain/builder/er/er.builder.js +0 -112
- package/domain/builder/er/er.builder.js.map +0 -1
- package/domain/builder/er/index.d.ts +0 -1
- package/domain/builder/er/index.js +0 -5
- package/domain/builder/er/index.js.map +0 -1
- package/domain/builder/screen-item/index.js +0 -5
- package/domain/builder/screen-item/index.js.map +0 -1
- package/domain/builder/screen-item/screen-item.builder.d.ts +0 -5
- package/domain/builder/screen-item/screen-item.builder.js.map +0 -1
- package/domain/index.js +0 -5
- package/domain/index.js.map +0 -1
- package/domain/invoice/builders/email/email.builder.d.ts +0 -18
- package/domain/invoice/builders/email/email.builder.js +0 -29
- package/domain/invoice/builders/email/email.builder.js.map +0 -1
- package/domain/invoice/builders/email/index.d.ts +0 -1
- package/domain/invoice/builders/email/index.js +0 -5
- package/domain/invoice/builders/email/index.js.map +0 -1
- package/domain/invoice/builders/message/index.d.ts +0 -1
- package/domain/invoice/builders/message/index.js +0 -5
- package/domain/invoice/builders/message/index.js.map +0 -1
- package/domain/invoice/builders/message/message.builder.d.ts +0 -6
- package/domain/invoice/builders/message/message.builder.js +0 -43
- package/domain/invoice/builders/message/message.builder.js.map +0 -1
- package/domain/invoice/builders/title/index.d.ts +0 -1
- package/domain/invoice/builders/title/index.js +0 -5
- package/domain/invoice/builders/title/index.js.map +0 -1
- package/domain/invoice/builders/title/title.builder.d.ts +0 -4
- package/domain/invoice/builders/title/title.builder.js +0 -11
- package/domain/invoice/builders/title/title.builder.js.map +0 -1
- package/domain/invoice/models/backoffice/contract.d.ts +0 -10
- package/domain/invoice/models/backoffice/contract.js +0 -50
- package/domain/invoice/models/backoffice/contract.js.map +0 -1
- package/domain/invoice/models/backoffice/index.d.ts +0 -5
- package/domain/invoice/models/backoffice/index.js +0 -9
- package/domain/invoice/models/backoffice/index.js.map +0 -1
- package/domain/invoice/models/backoffice/invoice-mail.d.ts +0 -8
- package/domain/invoice/models/backoffice/invoice-mail.js +0 -7
- package/domain/invoice/models/backoffice/invoice-mail.js.map +0 -1
- package/domain/invoice/models/backoffice/invoice.d.ts +0 -19
- package/domain/invoice/models/backoffice/invoice.js +0 -91
- package/domain/invoice/models/backoffice/invoice.js.map +0 -1
- package/domain/invoice/models/backoffice/order.d.ts +0 -26
- package/domain/invoice/models/backoffice/order.js +0 -157
- package/domain/invoice/models/backoffice/order.js.map +0 -1
- package/domain/invoice/models/backoffice/partner.d.ts +0 -17
- package/domain/invoice/models/backoffice/partner.js +0 -96
- package/domain/invoice/models/backoffice/partner.js.map +0 -1
- package/domain/invoice/models/index.d.ts +0 -1
- package/domain/invoice/models/index.js +0 -5
- package/domain/invoice/models/index.js.map +0 -1
- package/domain/models/agent/assistant.d.ts +0 -9
- package/domain/models/agent/assistant.js +0 -31
- package/domain/models/agent/assistant.js.map +0 -1
- package/domain/models/agent/index.d.ts +0 -1
- package/domain/models/agent/index.js +0 -5
- package/domain/models/agent/index.js.map +0 -1
- package/domain/models/bookmarklet/bookmarklet.d.ts +0 -9
- package/domain/models/bookmarklet/bookmarklet.js +0 -34
- package/domain/models/bookmarklet/bookmarklet.js.map +0 -1
- package/domain/models/bookmarklet/index.d.ts +0 -1
- package/domain/models/bookmarklet/index.js +0 -5
- package/domain/models/bookmarklet/index.js.map +0 -1
- package/domain/models/calendar-utils.d.ts +0 -5
- package/domain/models/calendar-utils.js +0 -43
- package/domain/models/calendar-utils.js.map +0 -1
- package/domain/models/command/command.d.ts +0 -18
- package/domain/models/command/command.helper.d.ts +0 -4
- package/domain/models/command/command.helper.js +0 -14
- package/domain/models/command/command.helper.js.map +0 -1
- package/domain/models/command/command.js +0 -40
- package/domain/models/command/command.js.map +0 -1
- package/domain/models/command/index.d.ts +0 -2
- package/domain/models/command/index.js +0 -6
- package/domain/models/command/index.js.map +0 -1
- package/domain/models/database/database.d.ts +0 -4
- package/domain/models/database/database.js +0 -7
- package/domain/models/database/database.js.map +0 -1
- package/domain/models/database/index.d.ts +0 -1
- package/domain/models/database/index.js +0 -5
- package/domain/models/database/index.js.map +0 -1
- package/domain/models/endpoint/endpoint.helper.d.ts +0 -4
- package/domain/models/endpoint/endpoint.helper.js +0 -21
- package/domain/models/endpoint/endpoint.helper.js.map +0 -1
- package/domain/models/endpoint/index.d.ts +0 -1
- package/domain/models/endpoint/index.js +0 -5
- package/domain/models/endpoint/index.js.map +0 -1
- package/domain/models/index.js +0 -12
- package/domain/models/index.js.map +0 -1
- package/domain/models/links/google/google.d.ts +0 -12
- package/domain/models/links/google/google.js +0 -47
- package/domain/models/links/google/google.js.map +0 -1
- package/domain/models/links/google/index.d.ts +0 -1
- package/domain/models/links/google/index.js +0 -5
- package/domain/models/links/google/index.js.map +0 -1
- package/domain/models/openapi/index.d.ts +0 -2
- package/domain/models/openapi/index.js +0 -6
- package/domain/models/openapi/index.js.map +0 -1
- package/domain/models/openapi/openapi.d.ts +0 -32
- package/domain/models/openapi/openapi.js +0 -87
- package/domain/models/openapi/openapi.js.map +0 -1
- package/domain/models/openapi/openapi.schema.d.ts +0 -76
- package/domain/models/openapi/openapi.schema.js +0 -3
- package/domain/models/openapi/openapi.schema.js.map +0 -1
- package/domain/models/operators/assistancts/base.d.ts +0 -5
- package/domain/models/operators/assistancts/base.js +0 -13
- package/domain/models/operators/assistancts/base.js.map +0 -1
- package/domain/models/operators/assistancts/index.d.ts +0 -1
- package/domain/models/operators/assistancts/index.js +0 -5
- package/domain/models/operators/assistancts/index.js.map +0 -1
- package/domain/models/operators/base.d.ts +0 -13
- package/domain/models/operators/base.js +0 -10
- package/domain/models/operators/base.js.map +0 -1
- package/domain/models/operators/index.d.ts +0 -4
- package/domain/models/operators/index.js +0 -8
- package/domain/models/operators/index.js.map +0 -1
- package/domain/models/operators/systems/base.d.ts +0 -5
- package/domain/models/operators/systems/base.js +0 -3
- package/domain/models/operators/systems/base.js.map +0 -1
- package/domain/models/operators/systems/graphql.d.ts +0 -5
- package/domain/models/operators/systems/graphql.js +0 -3
- package/domain/models/operators/systems/graphql.js.map +0 -1
- package/domain/models/operators/systems/index.d.ts +0 -3
- package/domain/models/operators/systems/index.js +0 -7
- package/domain/models/operators/systems/index.js.map +0 -1
- package/domain/models/operators/systems/rest.d.ts +0 -6
- package/domain/models/operators/systems/rest.js +0 -3
- package/domain/models/operators/systems/rest.js.map +0 -1
- package/domain/models/operators/workflows/index.d.ts +0 -1
- package/domain/models/operators/workflows/index.js +0 -5
- package/domain/models/operators/workflows/index.js.map +0 -1
- package/domain/models/operators/workflows/workflow.d.ts +0 -9
- package/domain/models/operators/workflows/workflow.js +0 -3
- package/domain/models/operators/workflows/workflow.js.map +0 -1
- package/domain/models/project.d.ts +0 -22
- package/domain/models/project.js +0 -9
- package/domain/models/project.js.map +0 -1
- package/domain/models/query/index.d.ts +0 -2
- package/domain/models/query/index.js +0 -6
- package/domain/models/query/index.js.map +0 -1
- package/domain/models/query/query.d.ts +0 -27
- package/domain/models/query/query.helper.d.ts +0 -23
- package/domain/models/query/query.helper.js +0 -172
- package/domain/models/query/query.helper.js.map +0 -1
- package/domain/models/query/query.js +0 -122
- package/domain/models/query/query.js.map +0 -1
- package/domain/models/resource/index.d.ts +0 -2
- package/domain/models/resource/index.js +0 -6
- package/domain/models/resource/index.js.map +0 -1
- package/domain/models/resource/resource.d.ts +0 -15
- package/domain/models/resource/resource.helper.d.ts +0 -4
- package/domain/models/resource/resource.helper.js +0 -16
- package/domain/models/resource/resource.helper.js.map +0 -1
- package/domain/models/resource/resource.js +0 -73
- package/domain/models/resource/resource.js.map +0 -1
- package/domain/models/scheduler/index.d.ts +0 -1
- package/domain/models/scheduler/index.js +0 -5
- package/domain/models/scheduler/index.js.map +0 -1
- package/domain/models/scheduler/schedule.d.ts +0 -23
- package/domain/models/scheduler/schedule.js +0 -89
- package/domain/models/scheduler/schedule.js.map +0 -1
- package/domain/models/screen-item/index.d.ts +0 -1
- package/domain/models/screen-item/index.js +0 -5
- package/domain/models/screen-item/index.js.map +0 -1
- package/domain/models/screen-item/screen-item.d.ts +0 -9
- package/domain/models/screen-item/screen-item.js +0 -3
- package/domain/models/screen-item/screen-item.js.map +0 -1
- package/domain/models/spec.d.ts +0 -7
- package/domain/models/spec.js +0 -3
- package/domain/models/spec.js.map +0 -1
- package/domain/resolvers/index.d.ts +0 -1
- package/domain/resolvers/index.js +0 -5
- package/domain/resolvers/index.js.map +0 -1
- package/domain/resolvers/invoice.resolver.js +0 -31
- package/domain/resolvers/invoice.resolver.js.map +0 -1
- package/infrastructure/converters/bookmarklet/bookmarklet.converter.d.ts +0 -0
- package/infrastructure/converters/bookmarklet/bookmarklet.converter.js +0 -1
- package/infrastructure/converters/bookmarklet/bookmarklet.converter.js.map +0 -1
- package/infrastructure/converters/google/google.converter.d.ts +0 -9
- package/infrastructure/converters/google/google.converter.js +0 -27
- package/infrastructure/converters/google/google.converter.js.map +0 -1
- package/infrastructure/converters/google/index.d.ts +0 -1
- package/infrastructure/converters/google/index.js +0 -5
- package/infrastructure/converters/google/index.js.map +0 -1
- package/infrastructure/external/data-connect/data-connect.service.d.ts +0 -4
- package/infrastructure/external/data-connect/data-connect.service.impl.d.ts +0 -7
- package/infrastructure/external/data-connect/data-connect.service.impl.js +0 -20
- package/infrastructure/external/data-connect/data-connect.service.impl.js.map +0 -1
- package/infrastructure/external/data-connect/data-connect.service.js +0 -11
- package/infrastructure/external/data-connect/data-connect.service.js.map +0 -1
- package/infrastructure/external/data-connect/index.d.ts +0 -1
- package/infrastructure/external/data-connect/index.js +0 -5
- package/infrastructure/external/data-connect/index.js.map +0 -1
- package/infrastructure/external/external.config.d.ts +0 -7
- package/infrastructure/external/external.config.js +0 -13
- package/infrastructure/external/external.config.js.map +0 -1
- package/infrastructure/external/external.service.d.ts +0 -8
- package/infrastructure/external/external.service.js +0 -23
- package/infrastructure/external/external.service.js.map +0 -1
- package/infrastructure/external/index.d.ts +0 -2
- package/infrastructure/external/index.js +0 -6
- package/infrastructure/external/index.js.map +0 -1
- package/infrastructure/external/quick-js/index.d.ts +0 -1
- package/infrastructure/external/quick-js/index.js +0 -5
- package/infrastructure/external/quick-js/index.js.map +0 -1
- package/infrastructure/external/quick-js/quick-js.service.d.ts +0 -7
- package/infrastructure/external/quick-js/quick-js.service.js +0 -44
- package/infrastructure/external/quick-js/quick-js.service.js.map +0 -1
- package/infrastructure/external/resend/index.d.ts +0 -1
- package/infrastructure/external/resend/index.js +0 -5
- package/infrastructure/external/resend/index.js.map +0 -1
- package/infrastructure/external/resend/resend.service.d.ts +0 -9
- package/infrastructure/external/resend/resend.service.impl.d.ts +0 -17
- package/infrastructure/external/resend/resend.service.impl.js +0 -27
- package/infrastructure/external/resend/resend.service.impl.js.map +0 -1
- package/infrastructure/external/resend/resend.service.js +0 -6
- package/infrastructure/external/resend/resend.service.js.map +0 -1
- package/infrastructure/index.d.ts +0 -2
- package/infrastructure/index.js +0 -6
- package/infrastructure/index.js.map +0 -1
- package/infrastructure/infrastructure.config.d.ts +0 -16
- package/infrastructure/infrastructure.config.js +0 -12
- package/infrastructure/infrastructure.config.js.map +0 -1
- package/infrastructure/infrastructure.service.d.ts +0 -7
- package/infrastructure/infrastructure.service.js +0 -20
- package/infrastructure/infrastructure.service.js.map +0 -1
- package/infrastructure/query/firestore/query/index.d.ts +0 -1
- package/infrastructure/query/firestore/query/index.js +0 -5
- package/infrastructure/query/firestore/query/index.js.map +0 -1
- package/infrastructure/query/firestore/query/query.query.d.ts +0 -6
- package/infrastructure/query/firestore/query/query.query.js +0 -20
- package/infrastructure/query/firestore/query/query.query.js.map +0 -1
- package/infrastructure/query/firestore/resource/index.d.ts +0 -1
- package/infrastructure/query/firestore/resource/index.js +0 -5
- package/infrastructure/query/firestore/resource/index.js.map +0 -1
- package/infrastructure/query/firestore/resource/resource.query.d.ts +0 -6
- package/infrastructure/query/firestore/resource/resource.query.js +0 -20
- package/infrastructure/query/firestore/resource/resource.query.js.map +0 -1
- package/infrastructure/query/hasura/resource/index.d.ts +0 -1
- package/infrastructure/query/hasura/resource/index.js +0 -5
- package/infrastructure/query/hasura/resource/index.js.map +0 -1
- package/infrastructure/query/hasura/resource/resource.query.d.ts +0 -3
- package/infrastructure/query/hasura/resource/resource.query.js +0 -14
- package/infrastructure/query/hasura/resource/resource.query.js.map +0 -1
- package/infrastructure/repository/dataconnect/invoice/index.d.ts +0 -1
- package/infrastructure/repository/dataconnect/invoice/index.js +0 -5
- package/infrastructure/repository/dataconnect/invoice/index.js.map +0 -1
- package/infrastructure/repository/dataconnect/invoice/invoice.repository.d.ts +0 -4
- package/infrastructure/repository/dataconnect/invoice/invoice.repository.impl.d.ts +0 -10
- package/infrastructure/repository/dataconnect/invoice/invoice.repository.impl.js +0 -54
- package/infrastructure/repository/dataconnect/invoice/invoice.repository.impl.js.map +0 -1
- package/infrastructure/repository/dataconnect/invoice/invoice.repository.js +0 -11
- package/infrastructure/repository/dataconnect/invoice/invoice.repository.js.map +0 -1
- package/infrastructure/repository/dataconnect/order/index.d.ts +0 -1
- package/infrastructure/repository/dataconnect/order/index.js +0 -5
- package/infrastructure/repository/dataconnect/order/index.js.map +0 -1
- package/infrastructure/repository/dataconnect/order/order.repository.d.ts +0 -4
- package/infrastructure/repository/dataconnect/order/order.repository.impl.d.ts +0 -14
- package/infrastructure/repository/dataconnect/order/order.repository.impl.js +0 -74
- package/infrastructure/repository/dataconnect/order/order.repository.impl.js.map +0 -1
- package/infrastructure/repository/dataconnect/order/order.repository.js +0 -11
- package/infrastructure/repository/dataconnect/order/order.repository.js.map +0 -1
- package/infrastructure/repository/firestore/bookmarklet/bookmarklet.repository.d.ts +0 -6
- package/infrastructure/repository/firestore/bookmarklet/bookmarklet.repository.js +0 -20
- package/infrastructure/repository/firestore/bookmarklet/bookmarklet.repository.js.map +0 -1
- package/infrastructure/repository/firestore/bookmarklet/index.d.ts +0 -1
- package/infrastructure/repository/firestore/bookmarklet/index.js +0 -5
- package/infrastructure/repository/firestore/bookmarklet/index.js.map +0 -1
- package/infrastructure/repository/firestore/firestore.repository.d.ts +0 -7
- package/infrastructure/repository/firestore/firestore.repository.js +0 -20
- package/infrastructure/repository/firestore/firestore.repository.js.map +0 -1
- package/infrastructure/repository/firestore/index.d.ts +0 -1
- package/infrastructure/repository/firestore/index.js +0 -5
- package/infrastructure/repository/firestore/index.js.map +0 -1
- package/infrastructure/repository/firestore/link/google/google.repository.d.ts +0 -7
- package/infrastructure/repository/firestore/link/google/google.repository.js +0 -19
- package/infrastructure/repository/firestore/link/google/google.repository.js.map +0 -1
- package/infrastructure/repository/firestore/link/google/index.d.ts +0 -1
- package/infrastructure/repository/firestore/link/google/index.js +0 -5
- package/infrastructure/repository/firestore/link/google/index.js.map +0 -1
- package/infrastructure/repository/firestore/link/index.d.ts +0 -1
- package/infrastructure/repository/firestore/link/index.js +0 -5
- package/infrastructure/repository/firestore/link/index.js.map +0 -1
- package/infrastructure/repository/firestore/link/link.repository.d.ts +0 -5
- package/infrastructure/repository/firestore/link/link.repository.js +0 -17
- package/infrastructure/repository/firestore/link/link.repository.js.map +0 -1
- package/infrastructure/repository/firestore/query/index.d.ts +0 -1
- package/infrastructure/repository/firestore/query/index.js +0 -5
- package/infrastructure/repository/firestore/query/index.js.map +0 -1
- package/infrastructure/repository/firestore/query/query.repository.d.ts +0 -6
- package/infrastructure/repository/firestore/query/query.repository.js +0 -20
- package/infrastructure/repository/firestore/query/query.repository.js.map +0 -1
- package/infrastructure/repository/firestore/resource/index.d.ts +0 -1
- package/infrastructure/repository/firestore/resource/index.js +0 -5
- package/infrastructure/repository/firestore/resource/index.js.map +0 -1
- package/infrastructure/repository/firestore/resource/resource.repository.d.ts +0 -6
- package/infrastructure/repository/firestore/resource/resource.repository.js +0 -20
- package/infrastructure/repository/firestore/resource/resource.repository.js.map +0 -1
- package/infrastructure/repository/hasura/query/index.d.ts +0 -1
- package/infrastructure/repository/hasura/query/index.js +0 -5
- package/infrastructure/repository/hasura/query/index.js.map +0 -1
- package/infrastructure/repository/hasura/query/query.repository.d.ts +0 -8
- package/infrastructure/repository/hasura/query/query.repository.js +0 -23
- package/infrastructure/repository/hasura/query/query.repository.js.map +0 -1
- package/infrastructure/repository/hasura/resource/index.d.ts +0 -1
- package/infrastructure/repository/hasura/resource/index.js +0 -5
- package/infrastructure/repository/hasura/resource/index.js.map +0 -1
- package/infrastructure/repository/hasura/resource/resource.repository.d.ts +0 -8
- package/infrastructure/repository/hasura/resource/resource.repository.js +0 -23
- package/infrastructure/repository/hasura/resource/resource.repository.js.map +0 -1
- package/infrastructure/repository/index.d.ts +0 -2
- package/infrastructure/repository/index.js +0 -6
- package/infrastructure/repository/index.js.map +0 -1
- package/infrastructure/repository/notion/contract/contract.config.d.ts +0 -9
- package/infrastructure/repository/notion/contract/contract.config.js +0 -10
- package/infrastructure/repository/notion/contract/contract.config.js.map +0 -1
- package/infrastructure/repository/notion/contract/contract.repository.d.ts +0 -8
- package/infrastructure/repository/notion/contract/contract.repository.js +0 -22
- package/infrastructure/repository/notion/contract/contract.repository.js.map +0 -1
- package/infrastructure/repository/notion/contract/index.d.ts +0 -2
- package/infrastructure/repository/notion/contract/index.js +0 -6
- package/infrastructure/repository/notion/contract/index.js.map +0 -1
- package/infrastructure/repository/notion/index.d.ts +0 -2
- package/infrastructure/repository/notion/index.js +0 -6
- package/infrastructure/repository/notion/index.js.map +0 -1
- package/infrastructure/repository/notion/invoice/index.d.ts +0 -2
- package/infrastructure/repository/notion/invoice/index.js +0 -6
- package/infrastructure/repository/notion/invoice/index.js.map +0 -1
- package/infrastructure/repository/notion/invoice/invoice.config.d.ts +0 -9
- package/infrastructure/repository/notion/invoice/invoice.config.js +0 -10
- package/infrastructure/repository/notion/invoice/invoice.config.js.map +0 -1
- package/infrastructure/repository/notion/invoice/invoice.repository.d.ts +0 -8
- package/infrastructure/repository/notion/invoice/invoice.repository.js +0 -22
- package/infrastructure/repository/notion/invoice/invoice.repository.js.map +0 -1
- package/infrastructure/repository/notion/notion.config.d.ts +0 -17
- package/infrastructure/repository/notion/notion.config.js +0 -18
- package/infrastructure/repository/notion/notion.config.js.map +0 -1
- package/infrastructure/repository/notion/notion.repository.d.ts +0 -11
- package/infrastructure/repository/notion/notion.repository.js +0 -26
- package/infrastructure/repository/notion/notion.repository.js.map +0 -1
- package/infrastructure/repository/notion/order/index.d.ts +0 -1
- package/infrastructure/repository/notion/order/index.js +0 -5
- package/infrastructure/repository/notion/order/index.js.map +0 -1
- package/infrastructure/repository/notion/order/order.config.d.ts +0 -9
- package/infrastructure/repository/notion/order/order.config.js +0 -10
- package/infrastructure/repository/notion/order/order.config.js.map +0 -1
- package/infrastructure/repository/notion/order/order.repository.d.ts +0 -8
- package/infrastructure/repository/notion/order/order.repository.js +0 -22
- package/infrastructure/repository/notion/order/order.repository.js.map +0 -1
- package/infrastructure/repository/notion/partner/index.d.ts +0 -2
- package/infrastructure/repository/notion/partner/index.js +0 -6
- package/infrastructure/repository/notion/partner/index.js.map +0 -1
- package/infrastructure/repository/notion/partner/partner.config.d.ts +0 -9
- package/infrastructure/repository/notion/partner/partner.config.js +0 -10
- package/infrastructure/repository/notion/partner/partner.config.js.map +0 -1
- package/infrastructure/repository/notion/partner/partner.repository.d.ts +0 -8
- package/infrastructure/repository/notion/partner/partner.repository.js +0 -22
- package/infrastructure/repository/notion/partner/partner.repository.js.map +0 -1
- package/infrastructure/repository/redis/index.d.ts +0 -2
- package/infrastructure/repository/redis/index.js +0 -6
- package/infrastructure/repository/redis/index.js.map +0 -1
- package/infrastructure/repository/redis/operator/index.d.ts +0 -1
- package/infrastructure/repository/redis/operator/index.js +0 -5
- package/infrastructure/repository/redis/operator/index.js.map +0 -1
- package/infrastructure/repository/redis/operator/operator.repository.d.ts +0 -5
- package/infrastructure/repository/redis/operator/operator.repository.js +0 -17
- package/infrastructure/repository/redis/operator/operator.repository.js.map +0 -1
- package/infrastructure/repository/redis/project/index.d.ts +0 -1
- package/infrastructure/repository/redis/project/index.js +0 -5
- package/infrastructure/repository/redis/project/index.js.map +0 -1
- package/infrastructure/repository/redis/project/project.repository.d.ts +0 -19
- package/infrastructure/repository/redis/project/project.repository.js +0 -33
- package/infrastructure/repository/redis/project/project.repository.js.map +0 -1
- package/infrastructure/repository/redis/redis.config.d.ts +0 -8
- package/infrastructure/repository/redis/redis.config.js +0 -10
- package/infrastructure/repository/redis/redis.config.js.map +0 -1
- package/infrastructure/repository/redis/redis.service.d.ts +0 -10
- package/infrastructure/repository/redis/redis.service.js +0 -22
- package/infrastructure/repository/redis/redis.service.js.map +0 -1
- package/infrastructure/repository/redis/spec/index.d.ts +0 -1
- package/infrastructure/repository/redis/spec/index.js +0 -5
- package/infrastructure/repository/redis/spec/index.js.map +0 -1
- package/infrastructure/repository/redis/spec/spec.repository.d.ts +0 -17
- package/infrastructure/repository/redis/spec/spec.repository.js +0 -94
- package/infrastructure/repository/redis/spec/spec.repository.js.map +0 -1
- package/infrastructure/repository/redis/system/index.d.ts +0 -1
- package/infrastructure/repository/redis/system/index.js +0 -5
- package/infrastructure/repository/redis/system/index.js.map +0 -1
- package/infrastructure/repository/redis/system/system.repository.d.ts +0 -3
- package/infrastructure/repository/redis/system/system.repository.js +0 -15
- package/infrastructure/repository/redis/system/system.repository.js.map +0 -1
- package/infrastructure/repository/repository.config.d.ts +0 -16
- package/infrastructure/repository/repository.config.js +0 -12
- package/infrastructure/repository/repository.config.js.map +0 -1
- package/infrastructure/repository/repository.service.d.ts +0 -8
- package/infrastructure/repository/repository.service.js +0 -20
- package/infrastructure/repository/repository.service.js.map +0 -1
- package/stores/index.js +0 -66
- package/stores/index.js.map +0 -1
- package/usecase/assistant/assistant.service.d.ts +0 -12
- package/usecase/assistant/assistant.service.js +0 -72
- package/usecase/assistant/assistant.service.js.map +0 -1
- package/usecase/assistant/index.js +0 -5
- package/usecase/assistant/index.js.map +0 -1
- package/usecase/database/database.service.d.ts +0 -31
- package/usecase/database/database.service.js +0 -103
- package/usecase/database/database.service.js.map +0 -1
- package/usecase/database/index.js +0 -5
- package/usecase/database/index.js.map +0 -1
- package/usecase/graphql/graphql.service.d.ts +0 -9
- package/usecase/graphql/graphql.service.js +0 -49
- package/usecase/graphql/graphql.service.js.map +0 -1
- package/usecase/graphql/index.js +0 -5
- package/usecase/graphql/index.js.map +0 -1
- package/usecase/index.js +0 -5
- package/usecase/index.js.map +0 -1
- package/usecase/invoice/index.d.ts +0 -1
- package/usecase/invoice/index.js +0 -5
- package/usecase/invoice/index.js.map +0 -1
- package/usecase/invoice/invoice.service.d.ts +0 -27
- package/usecase/invoice/invoice.service.js +0 -69
- package/usecase/invoice/invoice.service.js.map +0 -1
- package/usecase/link/index.js +0 -5
- package/usecase/link/index.js.map +0 -1
- package/usecase/link/link.service.d.ts +0 -7
- package/usecase/link/link.service.js +0 -20
- package/usecase/link/link.service.js.map +0 -1
- package/usecase/order/index.d.ts +0 -1
- package/usecase/order/index.js +0 -5
- package/usecase/order/index.js.map +0 -1
- package/usecase/order/order.service.d.ts +0 -6
- package/usecase/order/order.service.js +0 -27
- package/usecase/order/order.service.js.map +0 -1
- package/usecase/project/index.js +0 -5
- package/usecase/project/index.js.map +0 -1
- package/usecase/project/project.service.d.ts +0 -10
- package/usecase/project/project.service.js +0 -37
- package/usecase/project/project.service.js.map +0 -1
- package/usecase/spec/index.js +0 -5
- package/usecase/spec/index.js.map +0 -1
- package/usecase/spec/spec.service.d.ts +0 -11
- package/usecase/spec/spec.service.js +0 -49
- package/usecase/spec/spec.service.js.map +0 -1
- package/usecase/usecase.service.d.ts +0 -12
- package/usecase/usecase.service.js +0 -24
- package/usecase/usecase.service.js.map +0 -1
- package/utils/crypto.d.ts +0 -7
- package/utils/crypto.js.map +0 -1
- package/utils/extract-display-fields.d.ts +0 -2
- package/utils/extract-display-fields.js.map +0 -1
- package/utils/index.js +0 -5
- package/utils/index.js.map +0 -1
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { Entity } from '@nx-ddd/common/domain/models';
|
|
2
|
-
import dayjs from 'dayjs';
|
|
3
|
-
import { Partner } from './partner';
|
|
4
|
-
export declare class Order extends Entity {
|
|
5
|
-
id: string;
|
|
6
|
-
no: number;
|
|
7
|
-
title: string;
|
|
8
|
-
eclId: string;
|
|
9
|
-
customerId: string;
|
|
10
|
-
customer?: Partner;
|
|
11
|
-
vendorId: string;
|
|
12
|
-
vendor?: Partner;
|
|
13
|
-
contractId: string;
|
|
14
|
-
invoiceId: string;
|
|
15
|
-
startDate: dayjs.Dayjs;
|
|
16
|
-
endDate: dayjs.Dayjs;
|
|
17
|
-
unitPrice: number;
|
|
18
|
-
unit: string;
|
|
19
|
-
quantity: number;
|
|
20
|
-
amountInput: number;
|
|
21
|
-
amount: number;
|
|
22
|
-
statusIn: string;
|
|
23
|
-
statusOut: string;
|
|
24
|
-
static from(params: Order): Order;
|
|
25
|
-
static get EMPTY(): Order;
|
|
26
|
-
}
|
|
@@ -1,157 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var Order_1;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Order = void 0;
|
|
5
|
-
const tslib_1 = require("tslib");
|
|
6
|
-
const models_1 = require("@nx-ddd/common/domain/models");
|
|
7
|
-
const notion_1 = require("@nx-ddd/notion");
|
|
8
|
-
const decorators_1 = require("@xxmachina/common/_shared/meta/decorators");
|
|
9
|
-
const dayjs_1 = tslib_1.__importDefault(require("dayjs"));
|
|
10
|
-
const partner_1 = require("./partner");
|
|
11
|
-
const class_transformer_1 = require("class-transformer");
|
|
12
|
-
let Order = Order_1 = class Order extends models_1.Entity {
|
|
13
|
-
static from(params) {
|
|
14
|
-
const instance = Object.assign(new Order_1(), Object.assign({}, params));
|
|
15
|
-
return instance;
|
|
16
|
-
}
|
|
17
|
-
static get EMPTY() {
|
|
18
|
-
return Order_1.from({
|
|
19
|
-
id: null,
|
|
20
|
-
no: null,
|
|
21
|
-
title: null,
|
|
22
|
-
eclId: null,
|
|
23
|
-
customerId: null,
|
|
24
|
-
vendorId: null,
|
|
25
|
-
statusIn: null,
|
|
26
|
-
statusOut: null,
|
|
27
|
-
contractId: null,
|
|
28
|
-
invoiceId: null,
|
|
29
|
-
startDate: null,
|
|
30
|
-
endDate: null,
|
|
31
|
-
unitPrice: null,
|
|
32
|
-
unit: null,
|
|
33
|
-
quantity: null,
|
|
34
|
-
amount: null,
|
|
35
|
-
amountInput: null,
|
|
36
|
-
});
|
|
37
|
-
}
|
|
38
|
-
};
|
|
39
|
-
exports.Order = Order;
|
|
40
|
-
tslib_1.__decorate([
|
|
41
|
-
(0, decorators_1.Field)(() => decorators_1.ID, { nullable: true }),
|
|
42
|
-
models_1.Domain.Lang('ID'),
|
|
43
|
-
tslib_1.__metadata("design:type", String)
|
|
44
|
-
], Order.prototype, "id", void 0);
|
|
45
|
-
tslib_1.__decorate([
|
|
46
|
-
(0, decorators_1.Field)(() => Number, { nullable: true }),
|
|
47
|
-
notion_1.Notion.UniqueID('no'),
|
|
48
|
-
models_1.Domain.Lang('no'),
|
|
49
|
-
tslib_1.__metadata("design:type", Number)
|
|
50
|
-
], Order.prototype, "no", void 0);
|
|
51
|
-
tslib_1.__decorate([
|
|
52
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
53
|
-
notion_1.Notion.Title('件名'),
|
|
54
|
-
models_1.Domain.Lang('件名'),
|
|
55
|
-
tslib_1.__metadata("design:type", String)
|
|
56
|
-
], Order.prototype, "title", void 0);
|
|
57
|
-
tslib_1.__decorate([
|
|
58
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
59
|
-
notion_1.Notion.Relation('ECL', { multi: false }),
|
|
60
|
-
models_1.Domain.Lang('ECL'),
|
|
61
|
-
tslib_1.__metadata("design:type", String)
|
|
62
|
-
], Order.prototype, "eclId", void 0);
|
|
63
|
-
tslib_1.__decorate([
|
|
64
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
65
|
-
notion_1.Notion.Relation('発注者', { multi: false }),
|
|
66
|
-
models_1.Domain.Lang('発注者ID'),
|
|
67
|
-
tslib_1.__metadata("design:type", String)
|
|
68
|
-
], Order.prototype, "customerId", void 0);
|
|
69
|
-
tslib_1.__decorate([
|
|
70
|
-
(0, class_transformer_1.Type)(() => partner_1.Partner),
|
|
71
|
-
models_1.Domain.Lang('発注者'),
|
|
72
|
-
tslib_1.__metadata("design:type", partner_1.Partner)
|
|
73
|
-
], Order.prototype, "customer", void 0);
|
|
74
|
-
tslib_1.__decorate([
|
|
75
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
76
|
-
notion_1.Notion.Relation('受注者', { multi: false }),
|
|
77
|
-
models_1.Domain.Lang('受注者ID'),
|
|
78
|
-
tslib_1.__metadata("design:type", String)
|
|
79
|
-
], Order.prototype, "vendorId", void 0);
|
|
80
|
-
tslib_1.__decorate([
|
|
81
|
-
(0, class_transformer_1.Type)(() => partner_1.Partner),
|
|
82
|
-
models_1.Domain.Lang('受注者'),
|
|
83
|
-
tslib_1.__metadata("design:type", partner_1.Partner)
|
|
84
|
-
], Order.prototype, "vendor", void 0);
|
|
85
|
-
tslib_1.__decorate([
|
|
86
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
87
|
-
notion_1.Notion.Relation('契約', { multi: false }),
|
|
88
|
-
models_1.Domain.Lang('契約ID'),
|
|
89
|
-
tslib_1.__metadata("design:type", String)
|
|
90
|
-
], Order.prototype, "contractId", void 0);
|
|
91
|
-
tslib_1.__decorate([
|
|
92
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
93
|
-
notion_1.Notion.Formula('請求'),
|
|
94
|
-
models_1.Domain.Lang('請求ID'),
|
|
95
|
-
tslib_1.__metadata("design:type", String)
|
|
96
|
-
], Order.prototype, "invoiceId", void 0);
|
|
97
|
-
tslib_1.__decorate([
|
|
98
|
-
(0, decorators_1.Field)(() => Date, { nullable: true }),
|
|
99
|
-
(0, models_1.TransformToDayjs)(),
|
|
100
|
-
notion_1.Notion.Date('開始日'),
|
|
101
|
-
models_1.Domain.Lang('開始日'),
|
|
102
|
-
tslib_1.__metadata("design:type", dayjs_1.default.Dayjs)
|
|
103
|
-
], Order.prototype, "startDate", void 0);
|
|
104
|
-
tslib_1.__decorate([
|
|
105
|
-
(0, decorators_1.Field)(() => Date, { nullable: true }),
|
|
106
|
-
(0, models_1.TransformToDayjs)(),
|
|
107
|
-
notion_1.Notion.Date('終了日'),
|
|
108
|
-
models_1.Domain.Lang('終了日'),
|
|
109
|
-
tslib_1.__metadata("design:type", dayjs_1.default.Dayjs)
|
|
110
|
-
], Order.prototype, "endDate", void 0);
|
|
111
|
-
tslib_1.__decorate([
|
|
112
|
-
(0, decorators_1.Field)(() => Number, { nullable: true }),
|
|
113
|
-
notion_1.Notion.Number('単価'),
|
|
114
|
-
models_1.Domain.Lang('単価'),
|
|
115
|
-
tslib_1.__metadata("design:type", Number)
|
|
116
|
-
], Order.prototype, "unitPrice", void 0);
|
|
117
|
-
tslib_1.__decorate([
|
|
118
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
119
|
-
notion_1.Notion.Select('単位'),
|
|
120
|
-
models_1.Domain.Lang('単位'),
|
|
121
|
-
tslib_1.__metadata("design:type", String)
|
|
122
|
-
], Order.prototype, "unit", void 0);
|
|
123
|
-
tslib_1.__decorate([
|
|
124
|
-
(0, decorators_1.Field)(() => Number, { nullable: true }),
|
|
125
|
-
notion_1.Notion.Number('数量'),
|
|
126
|
-
models_1.Domain.Lang('数量'),
|
|
127
|
-
tslib_1.__metadata("design:type", Number)
|
|
128
|
-
], Order.prototype, "quantity", void 0);
|
|
129
|
-
tslib_1.__decorate([
|
|
130
|
-
(0, decorators_1.Field)(() => Number, { nullable: true }),
|
|
131
|
-
notion_1.Notion.Number('合計金額(入力)'),
|
|
132
|
-
models_1.Domain.Lang('合計金額(入力)'),
|
|
133
|
-
tslib_1.__metadata("design:type", Number)
|
|
134
|
-
], Order.prototype, "amountInput", void 0);
|
|
135
|
-
tslib_1.__decorate([
|
|
136
|
-
(0, decorators_1.Field)(() => Number, { nullable: true }),
|
|
137
|
-
notion_1.Notion.Formula('合計金額'),
|
|
138
|
-
models_1.Domain.Lang('合計金額'),
|
|
139
|
-
tslib_1.__metadata("design:type", Number)
|
|
140
|
-
], Order.prototype, "amount", void 0);
|
|
141
|
-
tslib_1.__decorate([
|
|
142
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
143
|
-
notion_1.Notion.Status('受注ステータス'),
|
|
144
|
-
models_1.Domain.Lang('受注ステータス'),
|
|
145
|
-
tslib_1.__metadata("design:type", String)
|
|
146
|
-
], Order.prototype, "statusIn", void 0);
|
|
147
|
-
tslib_1.__decorate([
|
|
148
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
149
|
-
notion_1.Notion.Status('発注ステータス'),
|
|
150
|
-
models_1.Domain.Lang('発注ステータス'),
|
|
151
|
-
tslib_1.__metadata("design:type", String)
|
|
152
|
-
], Order.prototype, "statusOut", void 0);
|
|
153
|
-
exports.Order = Order = Order_1 = tslib_1.__decorate([
|
|
154
|
-
(0, decorators_1.ObjectType)(),
|
|
155
|
-
models_1.Domain.Entity({ name: '受注' })
|
|
156
|
-
], Order);
|
|
157
|
-
//# sourceMappingURL=order.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"order.js","sourceRoot":"","sources":["../../../../../../../../packages/@xxmachina/common/src/lib/domain/invoice/models/backoffice/order.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { Entity } from "@nx-ddd/common/domain/models";
|
|
2
|
-
export declare class Partner extends Entity {
|
|
3
|
-
id: string;
|
|
4
|
-
no: number;
|
|
5
|
-
name: string;
|
|
6
|
-
type: string;
|
|
7
|
-
address: string;
|
|
8
|
-
postalCode: string;
|
|
9
|
-
email: string;
|
|
10
|
-
billingEmail: string;
|
|
11
|
-
billingContact: string;
|
|
12
|
-
phoneNumber: string;
|
|
13
|
-
contact: string;
|
|
14
|
-
suffix: string;
|
|
15
|
-
bankAccount: string;
|
|
16
|
-
static from(params: Partner): Partner;
|
|
17
|
-
}
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var Partner_1;
|
|
3
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
-
exports.Partner = void 0;
|
|
5
|
-
const tslib_1 = require("tslib");
|
|
6
|
-
const models_1 = require("@nx-ddd/common/domain/models");
|
|
7
|
-
const notion = tslib_1.__importStar(require("@nx-ddd/notion/decorators"));
|
|
8
|
-
const decorators_1 = require("@xxmachina/common/_shared/meta/decorators");
|
|
9
|
-
let Partner = Partner_1 = class Partner extends models_1.Entity {
|
|
10
|
-
static from(params) {
|
|
11
|
-
return Object.assign(new Partner_1(), Object.assign({}, params));
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
exports.Partner = Partner;
|
|
15
|
-
tslib_1.__decorate([
|
|
16
|
-
(0, decorators_1.Field)(() => decorators_1.ID, { nullable: true }),
|
|
17
|
-
models_1.Domain.Lang('ID'),
|
|
18
|
-
tslib_1.__metadata("design:type", String)
|
|
19
|
-
], Partner.prototype, "id", void 0);
|
|
20
|
-
tslib_1.__decorate([
|
|
21
|
-
(0, decorators_1.Field)(() => Number, { nullable: true }),
|
|
22
|
-
notion.UniqueID('no'),
|
|
23
|
-
models_1.Domain.Lang('番号'),
|
|
24
|
-
tslib_1.__metadata("design:type", Number)
|
|
25
|
-
], Partner.prototype, "no", void 0);
|
|
26
|
-
tslib_1.__decorate([
|
|
27
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
28
|
-
notion.Title('名前'),
|
|
29
|
-
models_1.Domain.Lang('名前'),
|
|
30
|
-
tslib_1.__metadata("design:type", String)
|
|
31
|
-
], Partner.prototype, "name", void 0);
|
|
32
|
-
tslib_1.__decorate([
|
|
33
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
34
|
-
notion.Select('種別'),
|
|
35
|
-
models_1.Domain.Lang('種別'),
|
|
36
|
-
tslib_1.__metadata("design:type", String)
|
|
37
|
-
], Partner.prototype, "type", void 0);
|
|
38
|
-
tslib_1.__decorate([
|
|
39
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
40
|
-
notion.RichText('住所'),
|
|
41
|
-
models_1.Domain.Lang('住所'),
|
|
42
|
-
tslib_1.__metadata("design:type", String)
|
|
43
|
-
], Partner.prototype, "address", void 0);
|
|
44
|
-
tslib_1.__decorate([
|
|
45
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
46
|
-
notion.RichText('郵便番号'),
|
|
47
|
-
models_1.Domain.Lang('郵便番号'),
|
|
48
|
-
tslib_1.__metadata("design:type", String)
|
|
49
|
-
], Partner.prototype, "postalCode", void 0);
|
|
50
|
-
tslib_1.__decorate([
|
|
51
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
52
|
-
notion.Email('メールアドレス'),
|
|
53
|
-
models_1.Domain.Lang('メールアドレス'),
|
|
54
|
-
tslib_1.__metadata("design:type", String)
|
|
55
|
-
], Partner.prototype, "email", void 0);
|
|
56
|
-
tslib_1.__decorate([
|
|
57
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
58
|
-
notion.Email('請求先メールアドレス'),
|
|
59
|
-
models_1.Domain.Lang('請求先メールアドレス'),
|
|
60
|
-
tslib_1.__metadata("design:type", String)
|
|
61
|
-
], Partner.prototype, "billingEmail", void 0);
|
|
62
|
-
tslib_1.__decorate([
|
|
63
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
64
|
-
notion.RichText('請求先担当者名'),
|
|
65
|
-
models_1.Domain.Lang('請求先担当者名'),
|
|
66
|
-
tslib_1.__metadata("design:type", String)
|
|
67
|
-
], Partner.prototype, "billingContact", void 0);
|
|
68
|
-
tslib_1.__decorate([
|
|
69
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
70
|
-
notion.PhoneNumber('電話番号'),
|
|
71
|
-
models_1.Domain.Lang('電話番号'),
|
|
72
|
-
tslib_1.__metadata("design:type", String)
|
|
73
|
-
], Partner.prototype, "phoneNumber", void 0);
|
|
74
|
-
tslib_1.__decorate([
|
|
75
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
76
|
-
notion.RichText('担当者'),
|
|
77
|
-
models_1.Domain.Lang('担当者'),
|
|
78
|
-
tslib_1.__metadata("design:type", String)
|
|
79
|
-
], Partner.prototype, "contact", void 0);
|
|
80
|
-
tslib_1.__decorate([
|
|
81
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
82
|
-
notion.Formula('敬称'),
|
|
83
|
-
models_1.Domain.Lang('敬称'),
|
|
84
|
-
tslib_1.__metadata("design:type", String)
|
|
85
|
-
], Partner.prototype, "suffix", void 0);
|
|
86
|
-
tslib_1.__decorate([
|
|
87
|
-
(0, decorators_1.Field)(() => String, { nullable: true }),
|
|
88
|
-
notion.Formula('口座'),
|
|
89
|
-
models_1.Domain.Lang('口座'),
|
|
90
|
-
tslib_1.__metadata("design:type", String)
|
|
91
|
-
], Partner.prototype, "bankAccount", void 0);
|
|
92
|
-
exports.Partner = Partner = Partner_1 = tslib_1.__decorate([
|
|
93
|
-
(0, decorators_1.ObjectType)(),
|
|
94
|
-
models_1.Domain.Entity({ name: '取引先' })
|
|
95
|
-
], Partner);
|
|
96
|
-
//# sourceMappingURL=partner.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"partner.js","sourceRoot":"","sources":["../../../../../../../../packages/@xxmachina/common/src/lib/domain/invoice/models/backoffice/partner.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './backoffice';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/invoice/models/index.ts"],"names":[],"mappings":";;;AAAA,uDAA6B"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Assistant = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const class_validator_1 = require("class-validator");
|
|
6
|
-
const class_validator_extended_1 = require("class-validator-extended");
|
|
7
|
-
class Assistant {
|
|
8
|
-
}
|
|
9
|
-
exports.Assistant = Assistant;
|
|
10
|
-
tslib_1.__decorate([
|
|
11
|
-
(0, class_validator_1.IsString)(),
|
|
12
|
-
(0, class_validator_1.IsOptional)(),
|
|
13
|
-
tslib_1.__metadata("design:type", String)
|
|
14
|
-
], Assistant.prototype, "model", void 0);
|
|
15
|
-
tslib_1.__decorate([
|
|
16
|
-
(0, class_validator_1.IsString)(),
|
|
17
|
-
(0, class_validator_1.IsOptional)(),
|
|
18
|
-
tslib_1.__metadata("design:type", String)
|
|
19
|
-
], Assistant.prototype, "name", void 0);
|
|
20
|
-
tslib_1.__decorate([
|
|
21
|
-
(0, class_validator_1.IsString)(),
|
|
22
|
-
(0, class_validator_extended_1.Nullable)(),
|
|
23
|
-
(0, class_validator_1.IsOptional)(),
|
|
24
|
-
tslib_1.__metadata("design:type", String)
|
|
25
|
-
], Assistant.prototype, "description", void 0);
|
|
26
|
-
tslib_1.__decorate([
|
|
27
|
-
(0, class_validator_1.IsString)(),
|
|
28
|
-
(0, class_validator_1.IsOptional)(),
|
|
29
|
-
tslib_1.__metadata("design:type", String)
|
|
30
|
-
], Assistant.prototype, "instructions", void 0);
|
|
31
|
-
//# sourceMappingURL=assistant.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"assistant.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/agent/assistant.ts"],"names":[],"mappings":";;;;AAAA,qDAAuD;AACvD,uEAAoD;AAEpD,MAAa,SAAS;CAQrB;AARD,8BAQC;AAN2B;IAAzB,IAAA,0BAAQ,GAAE;IAAE,IAAA,4BAAU,GAAE;;wCAAgB;AACf;IAAzB,IAAA,0BAAQ,GAAE;IAAE,IAAA,4BAAU,GAAE;;uCAAe;AACF;IAArC,IAAA,0BAAQ,GAAE;IAAE,IAAA,mCAAQ,GAAE;IAAE,IAAA,4BAAU,GAAE;;8CAA4B;AACvC;IAAzB,IAAA,0BAAQ,GAAE;IAAE,IAAA,4BAAU,GAAE;;+CAAuB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './assistant';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/agent/index.ts"],"names":[],"mappings":";;;AAAA,sDAA4B"}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Bookmarklet = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const decorators_1 = require("@nx-ddd/firestore/decorators");
|
|
6
|
-
const dayjs_1 = tslib_1.__importDefault(require("dayjs"));
|
|
7
|
-
class Bookmarklet {
|
|
8
|
-
}
|
|
9
|
-
exports.Bookmarklet = Bookmarklet;
|
|
10
|
-
tslib_1.__decorate([
|
|
11
|
-
decorators_1.Firestore.ID(),
|
|
12
|
-
tslib_1.__metadata("design:type", String)
|
|
13
|
-
], Bookmarklet.prototype, "id", void 0);
|
|
14
|
-
tslib_1.__decorate([
|
|
15
|
-
decorators_1.Firestore.String(),
|
|
16
|
-
tslib_1.__metadata("design:type", String)
|
|
17
|
-
], Bookmarklet.prototype, "title", void 0);
|
|
18
|
-
tslib_1.__decorate([
|
|
19
|
-
decorators_1.Firestore.String(),
|
|
20
|
-
tslib_1.__metadata("design:type", String)
|
|
21
|
-
], Bookmarklet.prototype, "code", void 0);
|
|
22
|
-
tslib_1.__decorate([
|
|
23
|
-
decorators_1.Firestore.String(),
|
|
24
|
-
tslib_1.__metadata("design:type", String)
|
|
25
|
-
], Bookmarklet.prototype, "userId", void 0);
|
|
26
|
-
tslib_1.__decorate([
|
|
27
|
-
decorators_1.Firestore.Timestamp(),
|
|
28
|
-
tslib_1.__metadata("design:type", dayjs_1.default.Dayjs)
|
|
29
|
-
], Bookmarklet.prototype, "createdAt", void 0);
|
|
30
|
-
tslib_1.__decorate([
|
|
31
|
-
decorators_1.Firestore.Timestamp(),
|
|
32
|
-
tslib_1.__metadata("design:type", dayjs_1.default.Dayjs)
|
|
33
|
-
], Bookmarklet.prototype, "updatedAt", void 0);
|
|
34
|
-
//# sourceMappingURL=bookmarklet.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"bookmarklet.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/bookmarklet/bookmarklet.ts"],"names":[],"mappings":";;;;AAAA,6DAAyD;AACzD,0DAA0B;AAE1B,MAAa,WAAW;CASvB;AATD,kCASC;AARiB;IAAf,sBAAS,CAAC,EAAE,EAAE;;uCAAY;AACP;IAAnB,sBAAS,CAAC,MAAM,EAAE;;0CAAe;AACd;IAAnB,sBAAS,CAAC,MAAM,EAAE;;yCAAc;AAEb;IAAnB,sBAAS,CAAC,MAAM,EAAE;;2CAAgB;AAEZ;IAAtB,sBAAS,CAAC,SAAS,EAAE;sCAAY,eAAK,CAAC,KAAK;8CAAC;AACvB;IAAtB,sBAAS,CAAC,SAAS,EAAE;sCAAY,eAAK,CAAC,KAAK;8CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './bookmarklet';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/bookmarklet/index.ts"],"names":[],"mappings":";;;AAAA,wDAA8B"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { Schedule } from '@xxmachina/common/domain/models/scheduler';
|
|
2
|
-
import dayjs from 'dayjs';
|
|
3
|
-
export declare function getByTime(base: dayjs.Dayjs, time: string): dayjs.Dayjs;
|
|
4
|
-
export declare function buildMessage(schedules: Schedule[]): string;
|
|
5
|
-
export declare function resolveTitle(title: string, prefix: '[調整中] ' | '[調整済] '): string;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getByTime = getByTime;
|
|
4
|
-
exports.buildMessage = buildMessage;
|
|
5
|
-
exports.resolveTitle = resolveTitle;
|
|
6
|
-
const message_1 = require("@nx-ddd/common/utilities/message");
|
|
7
|
-
function getByTime(base, time) {
|
|
8
|
-
const [hour, minute] = time.split(':');
|
|
9
|
-
return base.clone().hour(Number(hour)).minute(Number(minute));
|
|
10
|
-
}
|
|
11
|
-
function format(schedules) {
|
|
12
|
-
return `・${schedules === null || schedules === void 0 ? void 0 : schedules[0].startAt.locale('ja').format('MM/DD(ddd)')} `
|
|
13
|
-
+ schedules.map(schedule => `${schedule.startAt.format('HH:mm')}~${schedule.endAt.format('HH:mm')}`).join(', ');
|
|
14
|
-
}
|
|
15
|
-
function buildMessage(schedules) {
|
|
16
|
-
if (schedules.length === 1) {
|
|
17
|
-
const schedule = schedules[0];
|
|
18
|
-
const tz = 'Asia/Tokyo';
|
|
19
|
-
return (0, message_1.message) `こちらでよろしくお願いいたします!
|
|
20
|
-
|
|
21
|
-
${schedule.name}
|
|
22
|
-
${schedule.startAt.locale('ja').format('M月 D日 (ddd曜日) · HH:mm')}~${schedule.endAt.locale('ja').format('HH:mm')}
|
|
23
|
-
タイムゾーン: ${tz}
|
|
24
|
-
Google Meet の参加に必要な情報
|
|
25
|
-
ビデオ通話のリンク: ${schedule === null || schedule === void 0 ? void 0 : schedule.url}`;
|
|
26
|
-
}
|
|
27
|
-
const map = new Map();
|
|
28
|
-
schedules.forEach(schedule => {
|
|
29
|
-
var _a;
|
|
30
|
-
const key = schedule.startAt.format('YYYY-MM-DD');
|
|
31
|
-
map.set(key, [...((_a = map.get(key)) !== null && _a !== void 0 ? _a : []), schedule]);
|
|
32
|
-
});
|
|
33
|
-
const keys = [...map.keys()];
|
|
34
|
-
return (0, message_1.message) `下記日程のいづれかでお時間いただけないでしょうか?
|
|
35
|
-
|
|
36
|
-
${keys.map(key => format(map.get(key))).join('\n')}
|
|
37
|
-
`;
|
|
38
|
-
}
|
|
39
|
-
function resolveTitle(title, prefix) {
|
|
40
|
-
title = title.replace('[調整中] ', '').replace('[調整済] ', '');
|
|
41
|
-
return `${prefix}${title}`;
|
|
42
|
-
}
|
|
43
|
-
//# sourceMappingURL=calendar-utils.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"calendar-utils.js","sourceRoot":"","sources":["../../../../../../packages/@xxmachina/common/src/lib/domain/models/calendar-utils.ts"],"names":[],"mappings":";;AAIA,8BAGC;AAQD,oCAwBC;AAED,oCAGC;AA3CD,8DAA2D;AAG3D,SAAgB,SAAS,CAAC,IAAiB,EAAE,IAAY;IACvD,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;IACvC,OAAO,IAAI,CAAC,KAAK,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,CAAC;AAChE,CAAC;AAGD,SAAS,MAAM,CAAC,SAAqB;IACnC,OAAO,IAAI,SAAS,aAAT,SAAS,uBAAT,SAAS,CAAG,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,YAAY,CAAC,GAAG;UAClE,SAAS,CAAC,GAAG,CAAC,QAAQ,CAAC,EAAE,CAAC,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AACpH,CAAC;AAED,SAAgB,YAAY,CAAC,SAAqB;IAChD,IAAI,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;QAC3B,MAAM,QAAQ,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;QAC9B,MAAM,EAAE,GAAG,YAAY,CAAC;QACxB,OAAO,IAAA,iBAAO,EAAA;;MAEZ,QAAQ,CAAC,IAAI;MACb,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,uBAAuB,CAAC,IAAI,QAAQ,CAAC,KAAK,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC;cACpG,EAAE;;iBAEC,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,GAAG,EAAE,CAAC;IAC/B,CAAC;IAED,MAAM,GAAG,GAAG,IAAI,GAAG,EAAsB,CAAC;IAC1C,SAAS,CAAC,OAAO,CAAC,QAAQ,CAAC,EAAE;;QAC3B,MAAM,GAAG,GAAG,QAAQ,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC;QAClD,GAAG,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,MAAA,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,mCAAI,EAAE,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC;IACpD,CAAC,CAAC,CAAC;IAEH,MAAM,IAAI,GAAG,CAAC,GAAG,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;IAC7B,OAAO,IAAA,iBAAO,EAAA;;IAEZ,IAAI,CAAC,GAAG,CAAC,GAAG,CAAC,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;GACjD,CAAC;AACJ,CAAC;AAED,SAAgB,YAAY,CAAC,KAAa,EAAE,MAA2B;IACrE,KAAK,GAAG,KAAK,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAC;IAC1D,OAAO,GAAG,MAAM,GAAG,KAAK,EAAE,CAAC;AAC7B,CAAC"}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare class WebApiRequest {
|
|
2
|
-
contentType: 'application/json' | 'multipart/form-data';
|
|
3
|
-
responseContentType: 'application/octet-stream' | 'unknown';
|
|
4
|
-
serverUrl: string;
|
|
5
|
-
apiJsonUrl: string;
|
|
6
|
-
path: string;
|
|
7
|
-
method: string;
|
|
8
|
-
security: Record<string, string[]>[];
|
|
9
|
-
bodySchema: any;
|
|
10
|
-
}
|
|
11
|
-
export declare class WebAPiRequestCommand {
|
|
12
|
-
id: string;
|
|
13
|
-
name: any;
|
|
14
|
-
description: string;
|
|
15
|
-
type: 'webApiRequest';
|
|
16
|
-
webApiRequest: WebApiRequest;
|
|
17
|
-
}
|
|
18
|
-
export type Command = WebAPiRequestCommand;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CommandHelper = void 0;
|
|
4
|
-
const endpoint_1 = require("../endpoint");
|
|
5
|
-
function join(...paths) {
|
|
6
|
-
return paths.map(path => path.replace(/(^\/|\/$)/g, '')).join('/');
|
|
7
|
-
}
|
|
8
|
-
class CommandHelper {
|
|
9
|
-
static resolveEndpoint(command, params) {
|
|
10
|
-
return endpoint_1.EndpointHelper.resolve(join(command.webApiRequest.serverUrl, command.webApiRequest.path), params);
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
exports.CommandHelper = CommandHelper;
|
|
14
|
-
//# sourceMappingURL=command.helper.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command.helper.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/command/command.helper.ts"],"names":[],"mappings":";;;AACA,0CAA6C;AAE7C,SAAS,IAAI,CAAC,GAAG,KAAe;IAC9B,OAAO,KAAK,CAAC,GAAG,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AACrE,CAAC;AAED,MAAa,aAAa;IACxB,MAAM,CAAC,eAAe,CAAC,OAAgB,EAAE,MAA8B;QACrE,OAAO,yBAAc,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,SAAS,EAAE,OAAO,CAAC,aAAa,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC,CAAC;IAC3G,CAAC;CACF;AAJD,sCAIC"}
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.WebAPiRequestCommand = exports.WebApiRequest = void 0;
|
|
4
|
-
const tslib_1 = require("tslib");
|
|
5
|
-
const models_1 = require("@nx-ddd/common/domain/models");
|
|
6
|
-
class WebApiRequest {
|
|
7
|
-
}
|
|
8
|
-
exports.WebApiRequest = WebApiRequest;
|
|
9
|
-
tslib_1.__decorate([
|
|
10
|
-
models_1.Domain.Lang('contentType'),
|
|
11
|
-
tslib_1.__metadata("design:type", String)
|
|
12
|
-
], WebApiRequest.prototype, "contentType", void 0);
|
|
13
|
-
tslib_1.__decorate([
|
|
14
|
-
models_1.Domain.Lang('サーバーURL'),
|
|
15
|
-
tslib_1.__metadata("design:type", String)
|
|
16
|
-
], WebApiRequest.prototype, "serverUrl", void 0);
|
|
17
|
-
tslib_1.__decorate([
|
|
18
|
-
models_1.Domain.Lang('OpenAPI URL'),
|
|
19
|
-
tslib_1.__metadata("design:type", String)
|
|
20
|
-
], WebApiRequest.prototype, "apiJsonUrl", void 0);
|
|
21
|
-
tslib_1.__decorate([
|
|
22
|
-
models_1.Domain.Lang('パス'),
|
|
23
|
-
tslib_1.__metadata("design:type", String)
|
|
24
|
-
], WebApiRequest.prototype, "path", void 0);
|
|
25
|
-
tslib_1.__decorate([
|
|
26
|
-
models_1.Domain.Lang('メソッド'),
|
|
27
|
-
tslib_1.__metadata("design:type", String)
|
|
28
|
-
], WebApiRequest.prototype, "method", void 0);
|
|
29
|
-
tslib_1.__decorate([
|
|
30
|
-
models_1.Domain.Lang('セキュリティ'),
|
|
31
|
-
tslib_1.__metadata("design:type", Array)
|
|
32
|
-
], WebApiRequest.prototype, "security", void 0);
|
|
33
|
-
class WebAPiRequestCommand {
|
|
34
|
-
}
|
|
35
|
-
exports.WebAPiRequestCommand = WebAPiRequestCommand;
|
|
36
|
-
tslib_1.__decorate([
|
|
37
|
-
models_1.Domain.Lang('説明'),
|
|
38
|
-
tslib_1.__metadata("design:type", String)
|
|
39
|
-
], WebAPiRequestCommand.prototype, "description", void 0);
|
|
40
|
-
//# sourceMappingURL=command.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"command.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/command/command.ts"],"names":[],"mappings":";;;;AAAA,yDAAsD;AAEtD,MAAa,aAAa;CASzB;AATD,sCASC;AAR6B;IAA3B,eAAM,CAAC,IAAI,CAAC,aAAa,CAAC;;kDAAyD;AAE5D;IAAvB,eAAM,CAAC,IAAI,CAAC,SAAS,CAAC;;gDAAmB;AACd;IAA3B,eAAM,CAAC,IAAI,CAAC,aAAa,CAAC;;iDAAoB;AAC5B;IAAlB,eAAM,CAAC,IAAI,CAAC,IAAI,CAAC;;2CAAc;AACX;IAApB,eAAM,CAAC,IAAI,CAAC,MAAM,CAAC;;6CAAgB;AACb;IAAtB,eAAM,CAAC,IAAI,CAAC,QAAQ,CAAC;;+CAAsC;AAI9D,MAAa,oBAAoB;CAMhC;AAND,oDAMC;AAHoB;IAAlB,eAAM,CAAC,IAAI,CAAC,IAAI,CAAC;;yDAAqB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/command/index.ts"],"names":[],"mappings":";;;AAAA,oDAA0B;AAC1B,2DAAiC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"database.js","sourceRoot":"","sources":["../../../../../../../packages/@xxmachina/common/src/lib/domain/models/database/database.ts"],"names":[],"mappings":";;;AAAA,MAAa,QAAQ;CAGpB;AAHD,4BAGC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './database';
|