@twin.org/standards-unece 0.0.1-next.21 → 0.0.1-next.23
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/dist/cjs/index.cjs +24011 -0
- package/dist/esm/index.mjs +23990 -1
- package/dist/types/codeTypes/amountCurrencyCodes.d.ts +733 -0
- package/dist/types/codeTypes/countryIdCodes.d.ts +1009 -0
- package/dist/types/codeTypes/documentCodes.d.ts +3225 -0
- package/dist/types/codeTypes/documentStatusCodes.d.ts +189 -0
- package/dist/types/codeTypes/governmentActionCodes.d.ts +53 -0
- package/dist/types/codeTypes/referenceCodes.d.ts +3281 -0
- package/dist/types/codeTypes/responsibleGovernmentAgencyCodes.d.ts +89 -0
- package/dist/types/codeTypes/statusCodes.d.ts +1417 -0
- package/dist/types/codeTypes/transportMeansTypeCodes.d.ts +549 -0
- package/dist/types/codeTypes/transportModeCodes.d.ts +53 -0
- package/dist/types/codeTypes/workflowStatusCodes.d.ts +109 -0
- package/dist/types/codes/amountCurrencyCodes.d.ts +7 -0
- package/dist/types/codes/countryIdCodes.d.ts +7 -0
- package/dist/types/codes/documentCodes.d.ts +7 -0
- package/dist/types/codes/documentStatusCodes.d.ts +7 -0
- package/dist/types/codes/governmentActionCodes.d.ts +7 -0
- package/dist/types/codes/referenceCodes.d.ts +7 -0
- package/dist/types/codes/responsibleGovernmentAgencyCodes.d.ts +7 -0
- package/dist/types/codes/statusCodes.d.ts +7 -0
- package/dist/types/codes/transportMeansTypeCodes.d.ts +7 -0
- package/dist/types/codes/transportModeCodes.d.ts +7 -0
- package/dist/types/codes/workflowStatusCodes.d.ts +7 -0
- package/dist/types/index.d.ts +23 -0
- package/dist/types/models/IUneceCode.d.ts +17 -0
- package/docs/changelog.md +1 -1
- package/docs/reference/index.md +37 -0
- package/docs/reference/interfaces/IUneceCode.md +27 -0
- package/docs/reference/type-aliases/AmountCurrencyCodes.md +7 -0
- package/docs/reference/type-aliases/CountryIdCodes.md +7 -0
- package/docs/reference/type-aliases/DocumentCodes.md +7 -0
- package/docs/reference/type-aliases/DocumentStatusCodes.md +7 -0
- package/docs/reference/type-aliases/GovernmentActionCodes.md +7 -0
- package/docs/reference/type-aliases/ReferenceCodes.md +7 -0
- package/docs/reference/type-aliases/ResponsibleGovernmentAgencyCodes.md +7 -0
- package/docs/reference/type-aliases/StatusCodes.md +7 -0
- package/docs/reference/type-aliases/TransportMeansTypeCodes.md +7 -0
- package/docs/reference/type-aliases/TransportModeCodes.md +7 -0
- package/docs/reference/type-aliases/WorkflowStatusCodes.md +7 -0
- package/docs/reference/variables/AMOUNT_CURRENCY_CODES.md +7 -0
- package/docs/reference/variables/AmountCurrencyCodes.md +1089 -0
- package/docs/reference/variables/COUNTRY_ID_CODES.md +7 -0
- package/docs/reference/variables/CountryIdCodes.md +1503 -0
- package/docs/reference/variables/DOCUMENT_CODES.md +7 -0
- package/docs/reference/variables/DOCUMENT_STATUS_CODES.md +7 -0
- package/docs/reference/variables/DocumentCodes.md +4827 -0
- package/docs/reference/variables/DocumentStatusCodes.md +273 -0
- package/docs/reference/variables/GOVERNMENT_ACTION_CODES.md +7 -0
- package/docs/reference/variables/GovernmentActionCodes.md +69 -0
- package/docs/reference/variables/REFERENCE_CODES.md +7 -0
- package/docs/reference/variables/RESPONSIBLE_GOVERNMENT_AGENCY_CODES.md +7 -0
- package/docs/reference/variables/ReferenceCodes.md +4911 -0
- package/docs/reference/variables/ResponsibleGovernmentAgencyCodes.md +123 -0
- package/docs/reference/variables/STATUS_CODES.md +7 -0
- package/docs/reference/variables/StatusCodes.md +2115 -0
- package/docs/reference/variables/TRANSPORT_MEANS_TYPE_CODES.md +7 -0
- package/docs/reference/variables/TRANSPORT_MODE_CODES.md +7 -0
- package/docs/reference/variables/TransportMeansTypeCodes.md +813 -0
- package/docs/reference/variables/TransportModeCodes.md +69 -0
- package/docs/reference/variables/WORKFLOW_STATUS_CODES.md +7 -0
- package/docs/reference/variables/WorkflowStatusCodes.md +153 -0
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string denoting the type of a document. [Reference United Nations Code List (UNCL) 1001]
|
|
4
|
+
* https://vocabulary.uncefact.org/DocumentCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/documentcodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const DOCUMENT_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent or replace a document status.
|
|
4
|
+
* https://vocabulary.uncefact.org/DocumentStatusCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/documentstatuscodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const DOCUMENT_STATUS_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to replace or represent a government action.
|
|
4
|
+
* https://vocabulary.uncefact.org/GovernmentActionCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/governmentactioncodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const GOVERNMENT_ACTION_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent a reference.
|
|
4
|
+
* https://vocabulary.uncefact.org/ReferenceCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/referencecodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const REFERENCE_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent a responsible government agency.
|
|
4
|
+
* https://vocabulary.uncefact.org/ResponsibleGovernmentAgencyCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/responsiblegovernmentagencycodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const RESPONSIBLE_GOVERNMENT_AGENCY_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent a status.
|
|
4
|
+
* https://vocabulary.uncefact.org/StatusCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/statuscodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const STATUS_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent the transport means type.
|
|
4
|
+
* https://vocabulary.uncefact.org/TransportMeansTypeCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/transportmeanstypecodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const TRANSPORT_MEANS_TYPE_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent a transport mode.
|
|
4
|
+
* https://vocabulary.uncefact.org/TransportModeCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/transportmodecodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const TRANSPORT_MODE_CODES: IUneceCode[];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { IUneceCode } from "../models/IUneceCode";
|
|
2
|
+
/**
|
|
3
|
+
* A character string used to represent a workflow status.
|
|
4
|
+
* https://vocabulary.uncefact.org/WorkflowStatusCodeList
|
|
5
|
+
* https://github.com/uncefact/vocabulary-outputs/blob/main/_data/workflowstatuscodelist.json
|
|
6
|
+
*/
|
|
7
|
+
export declare const WORKFLOW_STATUS_CODES: IUneceCode[];
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,2 +1,25 @@
|
|
|
1
|
+
export * from "./codes/amountCurrencyCodes";
|
|
2
|
+
export * from "./codes/countryIdCodes";
|
|
3
|
+
export * from "./codes/documentCodes";
|
|
4
|
+
export * from "./codes/documentStatusCodes";
|
|
5
|
+
export * from "./codes/governmentActionCodes";
|
|
6
|
+
export * from "./codes/referenceCodes";
|
|
7
|
+
export * from "./codes/responsibleGovernmentAgencyCodes";
|
|
8
|
+
export * from "./codes/statusCodes";
|
|
9
|
+
export * from "./codes/transportMeansTypeCodes";
|
|
10
|
+
export * from "./codes/transportModeCodes";
|
|
11
|
+
export * from "./codes/workflowStatusCodes";
|
|
12
|
+
export * from "./codeTypes/amountCurrencyCodes";
|
|
13
|
+
export * from "./codeTypes/countryIdCodes";
|
|
14
|
+
export * from "./codeTypes/documentCodes";
|
|
15
|
+
export * from "./codeTypes/documentStatusCodes";
|
|
16
|
+
export * from "./codeTypes/governmentActionCodes";
|
|
17
|
+
export * from "./codeTypes/referenceCodes";
|
|
18
|
+
export * from "./codeTypes/responsibleGovernmentAgencyCodes";
|
|
19
|
+
export * from "./codeTypes/statusCodes";
|
|
20
|
+
export * from "./codeTypes/transportMeansTypeCodes";
|
|
21
|
+
export * from "./codeTypes/transportModeCodes";
|
|
22
|
+
export * from "./codeTypes/workflowStatusCodes";
|
|
1
23
|
export * from "./dataTypes/uneceDataTypes";
|
|
24
|
+
export * from "./models/IUneceCode";
|
|
2
25
|
export * from "./models/uneceTypes";
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A unece reference code.
|
|
3
|
+
*/
|
|
4
|
+
export interface IUneceCode {
|
|
5
|
+
/**
|
|
6
|
+
* The uri of the reference code.
|
|
7
|
+
*/
|
|
8
|
+
uri: string;
|
|
9
|
+
/**
|
|
10
|
+
* The comment of the reference code.
|
|
11
|
+
*/
|
|
12
|
+
comment: string;
|
|
13
|
+
/**
|
|
14
|
+
* The value of the reference code.
|
|
15
|
+
*/
|
|
16
|
+
value: string;
|
|
17
|
+
}
|
package/docs/changelog.md
CHANGED
package/docs/reference/index.md
CHANGED
|
@@ -4,10 +4,47 @@
|
|
|
4
4
|
|
|
5
5
|
- [UneceDataTypes](classes/UneceDataTypes.md)
|
|
6
6
|
|
|
7
|
+
## Interfaces
|
|
8
|
+
|
|
9
|
+
- [IUneceCode](interfaces/IUneceCode.md)
|
|
10
|
+
|
|
7
11
|
## Type Aliases
|
|
8
12
|
|
|
13
|
+
- [AmountCurrencyCodes](type-aliases/AmountCurrencyCodes.md)
|
|
14
|
+
- [CountryIdCodes](type-aliases/CountryIdCodes.md)
|
|
15
|
+
- [DocumentCodes](type-aliases/DocumentCodes.md)
|
|
16
|
+
- [DocumentStatusCodes](type-aliases/DocumentStatusCodes.md)
|
|
17
|
+
- [GovernmentActionCodes](type-aliases/GovernmentActionCodes.md)
|
|
18
|
+
- [ReferenceCodes](type-aliases/ReferenceCodes.md)
|
|
19
|
+
- [ResponsibleGovernmentAgencyCodes](type-aliases/ResponsibleGovernmentAgencyCodes.md)
|
|
20
|
+
- [StatusCodes](type-aliases/StatusCodes.md)
|
|
21
|
+
- [TransportMeansTypeCodes](type-aliases/TransportMeansTypeCodes.md)
|
|
22
|
+
- [TransportModeCodes](type-aliases/TransportModeCodes.md)
|
|
23
|
+
- [WorkflowStatusCodes](type-aliases/WorkflowStatusCodes.md)
|
|
9
24
|
- [UneceTypes](type-aliases/UneceTypes.md)
|
|
10
25
|
|
|
11
26
|
## Variables
|
|
12
27
|
|
|
28
|
+
- [AmountCurrencyCodes](variables/AmountCurrencyCodes.md)
|
|
29
|
+
- [CountryIdCodes](variables/CountryIdCodes.md)
|
|
30
|
+
- [DocumentCodes](variables/DocumentCodes.md)
|
|
31
|
+
- [DocumentStatusCodes](variables/DocumentStatusCodes.md)
|
|
32
|
+
- [GovernmentActionCodes](variables/GovernmentActionCodes.md)
|
|
33
|
+
- [ReferenceCodes](variables/ReferenceCodes.md)
|
|
34
|
+
- [ResponsibleGovernmentAgencyCodes](variables/ResponsibleGovernmentAgencyCodes.md)
|
|
35
|
+
- [StatusCodes](variables/StatusCodes.md)
|
|
36
|
+
- [TransportMeansTypeCodes](variables/TransportMeansTypeCodes.md)
|
|
37
|
+
- [TransportModeCodes](variables/TransportModeCodes.md)
|
|
38
|
+
- [WorkflowStatusCodes](variables/WorkflowStatusCodes.md)
|
|
39
|
+
- [AMOUNT\_CURRENCY\_CODES](variables/AMOUNT_CURRENCY_CODES.md)
|
|
40
|
+
- [COUNTRY\_ID\_CODES](variables/COUNTRY_ID_CODES.md)
|
|
41
|
+
- [DOCUMENT\_CODES](variables/DOCUMENT_CODES.md)
|
|
42
|
+
- [DOCUMENT\_STATUS\_CODES](variables/DOCUMENT_STATUS_CODES.md)
|
|
43
|
+
- [GOVERNMENT\_ACTION\_CODES](variables/GOVERNMENT_ACTION_CODES.md)
|
|
44
|
+
- [REFERENCE\_CODES](variables/REFERENCE_CODES.md)
|
|
45
|
+
- [RESPONSIBLE\_GOVERNMENT\_AGENCY\_CODES](variables/RESPONSIBLE_GOVERNMENT_AGENCY_CODES.md)
|
|
46
|
+
- [STATUS\_CODES](variables/STATUS_CODES.md)
|
|
47
|
+
- [TRANSPORT\_MEANS\_TYPE\_CODES](variables/TRANSPORT_MEANS_TYPE_CODES.md)
|
|
48
|
+
- [TRANSPORT\_MODE\_CODES](variables/TRANSPORT_MODE_CODES.md)
|
|
49
|
+
- [WORKFLOW\_STATUS\_CODES](variables/WORKFLOW_STATUS_CODES.md)
|
|
13
50
|
- [UneceTypes](variables/UneceTypes.md)
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# Interface: IUneceCode
|
|
2
|
+
|
|
3
|
+
A unece reference code.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
### uri
|
|
8
|
+
|
|
9
|
+
> **uri**: `string`
|
|
10
|
+
|
|
11
|
+
The uri of the reference code.
|
|
12
|
+
|
|
13
|
+
***
|
|
14
|
+
|
|
15
|
+
### comment
|
|
16
|
+
|
|
17
|
+
> **comment**: `string`
|
|
18
|
+
|
|
19
|
+
The comment of the reference code.
|
|
20
|
+
|
|
21
|
+
***
|
|
22
|
+
|
|
23
|
+
### value
|
|
24
|
+
|
|
25
|
+
> **value**: `string`
|
|
26
|
+
|
|
27
|
+
The value of the reference code.
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: AmountCurrencyCodes
|
|
2
|
+
|
|
3
|
+
> **AmountCurrencyCodes**: *typeof* [`AmountCurrencyCodes`](../variables/AmountCurrencyCodes.md)\[keyof *typeof* [`AmountCurrencyCodes`](../variables/AmountCurrencyCodes.md)\]
|
|
4
|
+
|
|
5
|
+
RDF Class for AmountType amount type to define currency codes.
|
|
6
|
+
https://vocabulary.uncefact.org/AmountCurrency
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/amountcurrency.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: CountryIdCodes
|
|
2
|
+
|
|
3
|
+
> **CountryIdCodes**: *typeof* [`CountryIdCodes`](../variables/CountryIdCodes.md)\[keyof *typeof* [`CountryIdCodes`](../variables/CountryIdCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string to identify and distinguish uniquely, one instance of a country in an identification scheme from all other objects within the same scheme.
|
|
6
|
+
https://vocabulary.uncefact.org/CountryId
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/countryid.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: DocumentCodes
|
|
2
|
+
|
|
3
|
+
> **DocumentCodes**: *typeof* [`DocumentCodes`](../variables/DocumentCodes.md)\[keyof *typeof* [`DocumentCodes`](../variables/DocumentCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string denoting the type of a document. [Reference United Nations Code List (UNCL) 1001]
|
|
6
|
+
https://vocabulary.uncefact.org/DocumentCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/documentcodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: DocumentStatusCodes
|
|
2
|
+
|
|
3
|
+
> **DocumentStatusCodes**: *typeof* [`DocumentStatusCodes`](../variables/DocumentStatusCodes.md)\[keyof *typeof* [`DocumentStatusCodes`](../variables/DocumentStatusCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent or replace a document status.
|
|
6
|
+
https://vocabulary.uncefact.org/DocumentStatusCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/documentstatuscodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: GovernmentActionCodes
|
|
2
|
+
|
|
3
|
+
> **GovernmentActionCodes**: *typeof* [`GovernmentActionCodes`](../variables/GovernmentActionCodes.md)\[keyof *typeof* [`GovernmentActionCodes`](../variables/GovernmentActionCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to replace or represent a government action.
|
|
6
|
+
https://vocabulary.uncefact.org/GovernmentActionCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/governmentactioncodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: ReferenceCodes
|
|
2
|
+
|
|
3
|
+
> **ReferenceCodes**: *typeof* [`ReferenceCodes`](../variables/ReferenceCodes.md)\[keyof *typeof* [`ReferenceCodes`](../variables/ReferenceCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent a reference.
|
|
6
|
+
https://vocabulary.uncefact.org/ReferenceCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/referencecodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: ResponsibleGovernmentAgencyCodes
|
|
2
|
+
|
|
3
|
+
> **ResponsibleGovernmentAgencyCodes**: *typeof* [`ResponsibleGovernmentAgencyCodes`](../variables/ResponsibleGovernmentAgencyCodes.md)\[keyof *typeof* [`ResponsibleGovernmentAgencyCodes`](../variables/ResponsibleGovernmentAgencyCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent a responsible government agency.
|
|
6
|
+
https://vocabulary.uncefact.org/ResponsibleGovernmentAgencyCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/responsiblegovernmentagencycodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: StatusCodes
|
|
2
|
+
|
|
3
|
+
> **StatusCodes**: *typeof* [`StatusCodes`](../variables/StatusCodes.md)\[keyof *typeof* [`StatusCodes`](../variables/StatusCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent a status.
|
|
6
|
+
https://vocabulary.uncefact.org/StatusCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/statuscodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: TransportMeansTypeCodes
|
|
2
|
+
|
|
3
|
+
> **TransportMeansTypeCodes**: *typeof* [`TransportMeansTypeCodes`](../variables/TransportMeansTypeCodes.md)\[keyof *typeof* [`TransportMeansTypeCodes`](../variables/TransportMeansTypeCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent the transport means type.
|
|
6
|
+
https://vocabulary.uncefact.org/TransportMeansTypeCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/transportmeanstypecodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: TransportModeCodes
|
|
2
|
+
|
|
3
|
+
> **TransportModeCodes**: *typeof* [`TransportModeCodes`](../variables/TransportModeCodes.md)\[keyof *typeof* [`TransportModeCodes`](../variables/TransportModeCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent a transport mode.
|
|
6
|
+
https://vocabulary.uncefact.org/TransportModeCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/transportmodecodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Type Alias: WorkflowStatusCodes
|
|
2
|
+
|
|
3
|
+
> **WorkflowStatusCodes**: *typeof* [`WorkflowStatusCodes`](../variables/WorkflowStatusCodes.md)\[keyof *typeof* [`WorkflowStatusCodes`](../variables/WorkflowStatusCodes.md)\]
|
|
4
|
+
|
|
5
|
+
A character string used to represent a workflow status.
|
|
6
|
+
https://vocabulary.uncefact.org/WorkflowStatusCodeList
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/workflowstatuscodelist.json
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Variable: AMOUNT\_CURRENCY\_CODES
|
|
2
|
+
|
|
3
|
+
> `const` **AMOUNT\_CURRENCY\_CODES**: [`IUneceCode`](../interfaces/IUneceCode.md)[]
|
|
4
|
+
|
|
5
|
+
RDF Class for AmountType amount type to define currency codes.
|
|
6
|
+
https://vocabulary.uncefact.org/AmountCurrency
|
|
7
|
+
https://github.com/uncefact/vocabulary-outputs/blob/main/_data/amountcurrency.json
|