@proveanything/smartlinks 1.15.8 → 1.15.11
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/docs/API_SUMMARY.md +53 -1
- package/dist/docs/appConfig.md +46 -5
- package/dist/docs/containers.md +2 -0
- package/dist/docs/item-context.md +183 -0
- package/dist/docs/utils.md +35 -2
- package/dist/docs/widgets.md +9 -0
- package/dist/openapi.yaml +65 -0
- package/dist/types/appConfiguration.d.ts +16 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +1 -0
- package/dist/types/itemContext.d.ts +30 -0
- package/dist/types/itemContext.js +2 -0
- package/dist/types/nfc.d.ts +38 -0
- package/dist/types/widgets.d.ts +15 -0
- package/dist/utils/conditions.d.ts +29 -3
- package/dist/utils/conditions.js +28 -1
- package/docs/API_SUMMARY.md +53 -1
- package/docs/appConfig.md +46 -5
- package/docs/containers.md +2 -0
- package/docs/item-context.md +183 -0
- package/docs/utils.md +35 -2
- package/docs/widgets.md +9 -0
- package/openapi.yaml +65 -0
- package/package.json +1 -1
package/openapi.yaml
CHANGED
|
@@ -15666,6 +15666,9 @@ components:
|
|
|
15666
15666
|
properties:
|
|
15667
15667
|
basePlanId:
|
|
15668
15668
|
type: string
|
|
15669
|
+
productMode:
|
|
15670
|
+
type: object
|
|
15671
|
+
additionalProperties: true
|
|
15669
15672
|
addOnKeys:
|
|
15670
15673
|
type: array
|
|
15671
15674
|
items:
|
|
@@ -22203,6 +22206,31 @@ components:
|
|
|
22203
22206
|
- metadata
|
|
22204
22207
|
- broadcastId
|
|
22205
22208
|
- journeyId
|
|
22209
|
+
ItemContext:
|
|
22210
|
+
type: object
|
|
22211
|
+
properties:
|
|
22212
|
+
isAuthentic:
|
|
22213
|
+
type: boolean
|
|
22214
|
+
status:
|
|
22215
|
+
$ref: "#/components/schemas/ItemContextStatus"
|
|
22216
|
+
source:
|
|
22217
|
+
type: string
|
|
22218
|
+
enum:
|
|
22219
|
+
- nfc
|
|
22220
|
+
- serial
|
|
22221
|
+
errorMessage:
|
|
22222
|
+
type: string
|
|
22223
|
+
isRescan:
|
|
22224
|
+
type: boolean
|
|
22225
|
+
tag:
|
|
22226
|
+
$ref: "#/components/schemas/TagContext"
|
|
22227
|
+
checkedAt:
|
|
22228
|
+
type: number
|
|
22229
|
+
required:
|
|
22230
|
+
- isAuthentic
|
|
22231
|
+
- status
|
|
22232
|
+
- source
|
|
22233
|
+
- checkedAt
|
|
22206
22234
|
Job:
|
|
22207
22235
|
type: object
|
|
22208
22236
|
properties:
|
|
@@ -23034,6 +23062,39 @@ components:
|
|
|
23034
23062
|
- claimSetId
|
|
23035
23063
|
- codeId
|
|
23036
23064
|
- data
|
|
23065
|
+
TagContext:
|
|
23066
|
+
type: object
|
|
23067
|
+
properties:
|
|
23068
|
+
status:
|
|
23069
|
+
$ref: "#/components/schemas/TagStatus"
|
|
23070
|
+
tagId:
|
|
23071
|
+
type: string
|
|
23072
|
+
claimSetId:
|
|
23073
|
+
type: string
|
|
23074
|
+
codeId:
|
|
23075
|
+
type: string
|
|
23076
|
+
count:
|
|
23077
|
+
type: number
|
|
23078
|
+
previousCount:
|
|
23079
|
+
type: number
|
|
23080
|
+
data:
|
|
23081
|
+
type: object
|
|
23082
|
+
additionalProperties: true
|
|
23083
|
+
source:
|
|
23084
|
+
type: string
|
|
23085
|
+
enum:
|
|
23086
|
+
- nfc-validate
|
|
23087
|
+
- nfc-lookup
|
|
23088
|
+
- tag-index
|
|
23089
|
+
- none
|
|
23090
|
+
validatedAt:
|
|
23091
|
+
type: number
|
|
23092
|
+
errorMessage:
|
|
23093
|
+
type: string
|
|
23094
|
+
required:
|
|
23095
|
+
- status
|
|
23096
|
+
- source
|
|
23097
|
+
- validatedAt
|
|
23037
23098
|
OrderItem:
|
|
23038
23099
|
type: object
|
|
23039
23100
|
properties:
|
|
@@ -25211,6 +25272,10 @@ components:
|
|
|
25211
25272
|
additionalProperties: true
|
|
25212
25273
|
publicPortalUrl:
|
|
25213
25274
|
type: string
|
|
25275
|
+
itemContext:
|
|
25276
|
+
$ref: "#/components/schemas/ItemContext"
|
|
25277
|
+
tag:
|
|
25278
|
+
$ref: "#/components/schemas/TagContext"
|
|
25214
25279
|
size:
|
|
25215
25280
|
type: string
|
|
25216
25281
|
enum:
|