Skip to content

Commit

Permalink
+fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wmakeev committed Jul 18, 2021
1 parent 01bb645 commit 8d148d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "moysklad-api-model",
"version": "0.2.3",
"version": "0.2.4",
"description": "Объектная модель API МойСклад для TypeScript проектов",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
Expand Down
14 changes: 7 additions & 7 deletions src/model/utils/Patch.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
import type {
AttributePatch,
CashInPatch,
CashOutPatch,
CustomerOrderPatch,
EntityPatchRef,
MetaType,
CustomerOrderPositionPatch,
EntityPatchRef,
InvoiceInPatch,
InvoiceOutPatch
InvoiceOutPatch,
InvoicePositionPatch,
MetaType
} from '..'
import type { CashInPatch } from '../CashIn'
import type { CashOutPatch } from '../CashOut'
import type { InvoicePosition } from '../InvoicePosition'

export type PatchByMetaType = {
customerorder: CustomerOrderPatch
customerorderposition: CustomerOrderPositionPatch
attributemetadata: AttributePatch
invoicein: InvoiceInPatch
invoiceout: InvoiceOutPatch
invoiceposition: InvoicePosition
invoiceposition: InvoicePositionPatch
cashin: CashInPatch
cashout: CashOutPatch
}
Expand Down

0 comments on commit 8d148d6

Please sign in to comment.