forked from openedx/openedx-events
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add Content Library Collections signals
- Loading branch information
1 parent
0e47ee1
commit 8101eb4
Showing
7 changed files
with
128 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
more information about the project. | ||
""" | ||
|
||
__version__ = "9.12.0" | ||
__version__ = "9.13.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...s/schemas/org+openedx+content_authoring+content+library+collection+created+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "library_collection", | ||
"type": { | ||
"name": "LibraryCollectionData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "library_key", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "collection_id", | ||
"type": "long" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.content.library.collection.created.v1" | ||
} |
25 changes: 25 additions & 0 deletions
25
...s/schemas/org+openedx+content_authoring+content+library+collection+deleted+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "library_collection", | ||
"type": { | ||
"name": "LibraryCollectionData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "library_key", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "collection_id", | ||
"type": "long" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.content.library.collection.deleted.v1" | ||
} |
25 changes: 25 additions & 0 deletions
25
...s/schemas/org+openedx+content_authoring+content+library+collection+updated+v1_schema.avsc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "CloudEvent", | ||
"type": "record", | ||
"doc": "Avro Event Format for CloudEvents created with openedx_events/schema", | ||
"fields": [ | ||
{ | ||
"name": "library_collection", | ||
"type": { | ||
"name": "LibraryCollectionData", | ||
"type": "record", | ||
"fields": [ | ||
{ | ||
"name": "library_key", | ||
"type": "string" | ||
}, | ||
{ | ||
"name": "collection_id", | ||
"type": "long" | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"namespace": "org.openedx.content_authoring.content.library.collection.updated.v1" | ||
} |