@axinom/mosaic-messages 0.36.0-rc.2 → 0.36.0-rc.3
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/generated/schemas/payloads/image/types/image-upload-webhook-request-payload.json +6 -1
- package/dist/generated/schemas/payloads/image/types/index.d.ts +4 -0
- package/dist/generated/schemas/payloads/image/types/index.d.ts.map +1 -1
- package/dist/generated/types/payloads/image/types/image-upload-webhook-request-payload.d.ts +4 -0
- package/dist/generated/types/payloads/image/types/image-upload-webhook-request-payload.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/generated/schemas/payloads/image/types/image-upload-webhook-request-payload.json +6 -1
- package/src/generated/types/payloads/image/types/image-upload-webhook-request-payload.ts +4 -0
package/dist/generated/schemas/payloads/image/types/image-upload-webhook-request-payload.json
CHANGED
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"width",
|
|
11
11
|
"height",
|
|
12
12
|
"format",
|
|
13
|
-
"has_alpha"
|
|
13
|
+
"has_alpha",
|
|
14
|
+
"image_type"
|
|
14
15
|
],
|
|
15
16
|
"properties": {
|
|
16
17
|
"image_name": {
|
|
@@ -36,6 +37,10 @@
|
|
|
36
37
|
"has_alpha": {
|
|
37
38
|
"type": "boolean",
|
|
38
39
|
"description": "Boolean indicating the presence of an alpha transparency channel"
|
|
40
|
+
},
|
|
41
|
+
"image_type": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Type of image"
|
|
39
44
|
}
|
|
40
45
|
}
|
|
41
46
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/image/types/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,sCAAsC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/image/types/index.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,sCAAsC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAmC,CAAC;AACvF,eAAO,MAAM,uCAAuC;;;;;;;CAAoC,CAAC"}
|
|
@@ -26,5 +26,9 @@ export interface ImageUploadWebhookRequestPayload {
|
|
|
26
26
|
* Boolean indicating the presence of an alpha transparency channel
|
|
27
27
|
*/
|
|
28
28
|
has_alpha: boolean;
|
|
29
|
+
/**
|
|
30
|
+
* Type of image
|
|
31
|
+
*/
|
|
32
|
+
image_type: string;
|
|
29
33
|
}
|
|
30
34
|
//# sourceMappingURL=image-upload-webhook-request-payload.d.ts.map
|
package/dist/generated/types/payloads/image/types/image-upload-webhook-request-payload.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"image-upload-webhook-request-payload.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/image/types/image-upload-webhook-request-payload.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC/C;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;CACpB"}
|
|
1
|
+
{"version":3,"file":"image-upload-webhook-request-payload.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/image/types/image-upload-webhook-request-payload.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gCAAgC;IAC/C;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,SAAS,EAAE,OAAO,CAAC;IACnB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;CACpB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-messages",
|
|
3
|
-
"version": "0.36.0-rc.
|
|
3
|
+
"version": "0.36.0-rc.3",
|
|
4
4
|
"description": "Shared types for Axinom Mosaic service messages",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"dev": "concurrently --names \"codegen,tsc\" \"yarn codegen:watch\" \"yarn build:compile:watch\""
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@axinom/mosaic-cli": "^0.26.0-rc.
|
|
33
|
-
"@axinom/mosaic-message-bus-abstractions": "^0.7.0-rc.
|
|
32
|
+
"@axinom/mosaic-cli": "^0.26.0-rc.3",
|
|
33
|
+
"@axinom/mosaic-message-bus-abstractions": "^0.7.0-rc.3",
|
|
34
34
|
"@types/glob": "^7.1.3",
|
|
35
35
|
"concurrently": "^5.3.0",
|
|
36
36
|
"rimraf": "^3.0.2",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "28bc822700dfad00f6ca12a9d5ee207dbff4bd14"
|
|
46
46
|
}
|
package/src/generated/schemas/payloads/image/types/image-upload-webhook-request-payload.json
CHANGED
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"width",
|
|
11
11
|
"height",
|
|
12
12
|
"format",
|
|
13
|
-
"has_alpha"
|
|
13
|
+
"has_alpha",
|
|
14
|
+
"image_type"
|
|
14
15
|
],
|
|
15
16
|
"properties": {
|
|
16
17
|
"image_name": {
|
|
@@ -36,6 +37,10 @@
|
|
|
36
37
|
"has_alpha": {
|
|
37
38
|
"type": "boolean",
|
|
38
39
|
"description": "Boolean indicating the presence of an alpha transparency channel"
|
|
40
|
+
},
|
|
41
|
+
"image_type": {
|
|
42
|
+
"type": "string",
|
|
43
|
+
"description": "Type of image"
|
|
39
44
|
}
|
|
40
45
|
}
|
|
41
46
|
}
|