@clickview/ship-it 0.0.54-dev.0 → 0.0.54

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.
Files changed (53) hide show
  1. package/.claude/settings.local.json +11 -0
  2. package/dist/P3/P3 Notes Audit.csv +49 -0
  3. package/dist/R1/R1 Notes Audit.csv +117 -0
  4. package/dist/S3/S3 Notes Audit.csv +13 -0
  5. package/dist/W2/W2 Notes Audit.csv +14 -0
  6. package/lib/src/index.js +0 -0
  7. package/lib/src/tasks/InstallPackagesTask.js +23 -6
  8. package/package.json +1 -1
  9. package/dist/P3/Account.Api.md +0 -20
  10. package/dist/P3/Analytics Web.md +0 -13
  11. package/dist/P3/Batch.Api.md +0 -25
  12. package/dist/P3/Classroom.Api.md +0 -21
  13. package/dist/P3/ClickView Online.md +0 -18
  14. package/dist/P3/ClickView.Cron.JobProcessor.md +0 -28
  15. package/dist/P3/ClickView.Curator.md +0 -39
  16. package/dist/P3/Clients.md +0 -31
  17. package/dist/P3/Collection.Api.md +0 -28
  18. package/dist/P3/Discover.Api.md +0 -23
  19. package/dist/P3/Domain.Api.md +0 -36
  20. package/dist/P3/Exchange.Web.md +0 -6
  21. package/dist/P3/File.Api.IngestService.md +0 -38
  22. package/dist/P3/File.Api.md +0 -26
  23. package/dist/P3/FileGenerator.md +0 -14
  24. package/dist/P3/Hydration.App.md +0 -20
  25. package/dist/P3/Integrations.Api.md +0 -68
  26. package/dist/P3/Krakend.md +0 -29
  27. package/dist/P3/LeadQualifier.App.md +0 -19
  28. package/dist/P3/Library Editor.md +0 -14
  29. package/dist/P3/Library.Api.md +0 -29
  30. package/dist/P3/Lite.md +0 -6
  31. package/dist/P3/LocalCache.Api.md +0 -22
  32. package/dist/P3/LoginAnalytics.Api.md +0 -20
  33. package/dist/P3/Master.Api.md +0 -13
  34. package/dist/P3/Master.Auth.md +0 -28
  35. package/dist/P3/Objects.Api.md +0 -27
  36. package/dist/P3/Permissions.Api.md +0 -23
  37. package/dist/P3/Release Notes.md +0 -1196
  38. package/dist/P3/Search.Api.md +0 -14
  39. package/dist/P3/Share.Api.md +0 -16
  40. package/dist/P3/StreamableLearning.Web.md +0 -6
  41. package/dist/P3/Subjects.API.md +0 -13
  42. package/dist/P3/Tools.md +0 -13
  43. package/dist/P3/Tv.Web.md +0 -35
  44. package/dist/P3/TvConversion.App.md +0 -14
  45. package/dist/P3/TvRecording.App.md +0 -18
  46. package/dist/P3/TvSplice.App.md +0 -14
  47. package/dist/P3/Users.Api.md +0 -46
  48. package/dist/P3/VideoCollections.Api.md +0 -6
  49. package/dist/P3/VideoViews.Api.md +0 -29
  50. package/dist/P3/WorkspaceSplice.App.md +0 -14
  51. package/dist/P3/clickview.md +0 -130
  52. package/dist/P3/index.app.md +0 -58
  53. package/dist/V1/V1 Notes Audit.csv +0 -53
@@ -1,38 +0,0 @@
1
-
2
- # Deploy Dependencies
3
- * https://gitlab.cvinternal.net/clickview/back-end/File.Api/-/merge_requests/65
4
-
5
-
6
- # Before Release
7
-
8
- ## Tasks
9
- * [ ] Update `ClickView.FileApi.Models` nuget to `1.15.0` or above
10
-
11
-
12
- # Code Changes
13
- * Update `ClickView.FileApi.Models` that can support utf-8 character. Partially closes INBOX-9210
14
-
15
- * Detect and validate the MIME type of the file when it is uploaded. Closes INBOX-8745
16
- * A list of file extensions we currently have in file db can be found at https://clickview.quip.com/YMZfAM4XTCbN/File-Extension-for-Uploads
17
- * Use `Mime-Detective` third-party nuget to inspect the file signature (i.e. file magic number) of each binary file to determine their MIME type
18
- * Add the custom file signature definitions that are not included in the default file types of Mime-Detective
19
- * Consolidate a MIME type whitelist that ClickView allows the user to upload (Just log as warning for now if anything uploaded is not recognized or not included in the whitelist. In the next release, we ill block user from uploading any file that is not whitelisted).
20
- * Add a `PlainTextDetector` to handle the file that does not have file signature (i.e. plain text without byte order mark)
21
- * Add a `SbvSubtitleDetector` to handle the sbv subtitle file
22
- * Code cleanup
23
- * Convert `UploadService` to primary constructor
24
- * Remove `DateTimeExtensions`
25
- * Replace `PartialStreamWrapper` with `StreamHelpers.CopyStreamAsync` so we can peek the first 2K bytes of data for MIME type validation
26
-
27
-
28
- # Testing
29
- * INBOX-9210
30
-
31
- * INBOX-8745
32
-
33
-
34
- # Merge Request Checklist
35
- - [ ] QA validation is completed.
36
- - [ ] All dependencies have been addressed.
37
- - [ ] All before release tasks have been completed.
38
- - [ ] All after release tasks are ready to be completed.
@@ -1,26 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Update `ClickView.FileApi.Models.csproj` to bump the version to release build `1.15.0` and publish it to nuget
6
-
7
-
8
- # Customer Changes
9
- * Fixed an issue where file uploaded with UTF-8 characters file name have these characters stripped when downloading them. Closes INBOX-9210
10
-
11
-
12
- # Code Changes
13
- * Updated `SecureNameRegex` to support UTF-8 characters
14
- * Sanitize the file name for all 3 upload endpoints
15
- * Rename the test project from `ClickView.FileApi.Contracts.Tests` to `ClickView.FileApi.Models.Tests`
16
-
17
-
18
- # Testing
19
- * INBOX-9210
20
-
21
-
22
- # Merge Request Checklist
23
- - [ ] QA validation is completed.
24
- - [ ] All dependencies have been addressed.
25
- - [ ] All before release tasks have been completed.
26
- - [ ] All after release tasks are ready to be completed.
@@ -1,14 +0,0 @@
1
-
2
- # Code Changes
3
- * Calls the new v2 raw endpoint for anyone who has new share v2 turned on. Implements CORE-2038
4
-
5
-
6
- # Testing
7
- CORE-2038
8
-
9
-
10
- # Merge Request Checklist
11
- - [ ] QA validation is completed.
12
- - [ ] All dependencies have been addressed.
13
- - [ ] All before release tasks have been completed.
14
- - [ ] All after release tasks are ready to be completed.
@@ -1,20 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [x] Update octo variable and add in shared variable set
6
-
7
-
8
- # Code Changes
9
- * Queue updates. Implements INBOX-9146
10
-
11
-
12
- # Testing
13
- INBOX-9146
14
-
15
-
16
- # Merge Request Checklist
17
- - [ ] QA validation is completed.
18
- - [ ] All dependencies have been addressed.
19
- - [ ] All before release tasks have been completed.
20
- - [ ] All after release tasks are ready to be completed.
@@ -1,68 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
- * [ ] Rename octo variables:
7
- * `rabbitmq:username` to `queue:username`
8
- * `rabbitmq:password` to `queue:password`
9
- * `rabbitmq:discoverQueue` to `queue:discoverQueue`
10
- * `rabbitmq:masterQueue` to `queue:masterQueue`
11
-
12
- * [ ] Rename `next.sql` with release version
13
- * [ ] Run `<release>.sql`
14
- * [ ] Run `010-add-resource-template-rules.sql`
15
-
16
-
17
- ## SQL
18
- ```
19
- CREATE TABLE `resource_template_rules` (
20
- `ResourceTemplateId` VARCHAR(255) NOT NULL,
21
- `SuitabilityRule` TEXT,
22
- `DateCreated` DATETIME NOT NULL,
23
- `DateModified` DATETIME DEFAULT NULL,
24
- `DateDeleted` DATETIME DEFAULT NULL,
25
- `Deleted` BIT NOT NULL DEFAULT b'0',
26
- PRIMARY KEY (`ResourceTemplateId`),
27
- FOREIGN KEY (`ResourceTemplateId`) REFERENCES `resource_templates`(`Id`)
28
- );
29
- ALTER TABLE `resource_template_columns`
30
- DROP FOREIGN KEY `fk_resourcetemplateid_resourcetemplates_id`;
31
- ALTER TABLE `resource_template_columns`
32
- MODIFY `ResourceTemplateId` VARCHAR(255) NOT NULL;
33
- ALTER TABLE `resource_templates`
34
- MODIFY `Id` VARCHAR(255) NOT NULL;
35
- ALTER TABLE `resource_template_columns`
36
- ADD CONSTRAINT `fk_resourcetemplateid_resourcetemplates_id`
37
- FOREIGN KEY (`ResourceTemplateId`) REFERENCES `resource_templates` (`Id`);
38
- ```
39
-
40
-
41
- # Code Changes
42
- * Nuget packages update
43
- * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
44
- * Change the queues port from 5672 to 5671
45
- * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
46
-
47
- * Change resource template Id to string, so we can use a more readable lower-snake case as IDs
48
- * Resource prompts refinement
49
- * Added IsMovieAndTv identification in the video resource prompt
50
- * Add series name to resource CSV files
51
- * Add evaluator for AI resource generator
52
- * Added endpoint to get resource template suggestions for a video.
53
-
54
- * Update `GET api/v1/rostering/integrations/current-user` endpoint to return integration for customer’s organisation
55
-
56
-
57
- # Testing
58
- INBOX-9149
59
-
60
-
61
- * CORE-2028
62
-
63
-
64
- # Merge Request Checklist
65
- - [ ] QA validation is completed.
66
- - [ ] All dependencies have been addressed.
67
- - [ ] All before release tasks have been completed.
68
- - [ ] All after release tasks are ready to be completed.
@@ -1,29 +0,0 @@
1
-
2
- # Deploy Dependencies
3
- * https://gitlab.cvinternal.net/clickview/back-end/library.api/-/merge_requests/174
4
-
5
- - https://gitlab.cvinternal.net/clickview/back-end/Domain.Api/-/merge_requests/1216
6
-
7
- * https://gitlab.cvinternal.net/clickview/back-end/users.api/-/merge_requests/357
8
-
9
-
10
- # Code Changes
11
- * Add `POST v2/libraries/export` endpoint to support incremental library export. Closes CORE-2045
12
-
13
- - Added an endpoint to fetch organisation settings.
14
-
15
- * Add a new endpoint `PUT /v1/users/me/profile` to allow user to update their own basic info, like first name, last name and display name. Closes CORE-2015
16
-
17
-
18
- # Testing
19
- * CORE-2045
20
-
21
- - n/a
22
-
23
-
24
-
25
- # Merge Request Checklist
26
- - [ ] QA validation is completed.
27
- - [ ] All dependencies have been addressed.
28
- - [ ] All before release tasks have been completed.
29
- - [ ] All after release tasks are ready to be completed.
@@ -1,19 +0,0 @@
1
-
2
- # Code Changes
3
- * Update decision maker logic as detailed in the ticket. Implements [INBOX-9034](https://clickview.atlassian.net/browse/INBOX-9034)
4
-
5
- * Update `Snowflake.Data` to latest version
6
-
7
- - Register the `SalesQualifiedLeadDiscoveryClassifier` in DI against the `IProductLifecycleStageClassifier` and `IMarketingLifecycleStageClassifier`
8
-
9
-
10
- # Testing
11
-
12
-
13
-
14
-
15
- # Merge Request Checklist
16
- - [ ] QA validation is completed.
17
- - [ ] All dependencies have been addressed.
18
- - [ ] All before release tasks have been completed.
19
- - [ ] All after release tasks are ready to be completed.
@@ -1,14 +0,0 @@
1
-
2
- # Code Changes
3
- * Add ClickView CDN to CSP
4
- * Whitelist LE host
5
-
6
-
7
- # Testing
8
-
9
-
10
- # Merge Request Checklist
11
- - [ ] QA validation is completed.
12
- - [ ] All dependencies have been addressed.
13
- - [ ] All before release tasks have been completed.
14
- - [ ] All after release tasks are ready to be completed.
@@ -1,29 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Add a v2 endpoint `POST v2/libraries/export` to export library with incremental support. Closes CORE-2043
10
-
11
- * Support TLS connection for rabbitmq. Closes CORE-2036
12
- * Update `ClickView.GoodStuff.EventHandling.Master` to `0.12.0` or above which is default to ssl connection for rabbitmq
13
- * Update `ClickView.Clients.Notification` to `2.54.0` or above which has already had ignore ssl error turned on
14
- * Update `ClickView.Clients.FileGenerator` to `2.54.0` or above which has already had ignore ssl error turned on
15
- * Set `EnableSsl = true` for both notification and file generator client
16
- * Update `NotificationService` to adapt to the changes made in the latest `ClickView.Clients.Notification` nuget
17
-
18
-
19
- # Testing
20
- * CORE-2043
21
-
22
- * CORE-2036
23
-
24
-
25
- # Merge Request Checklist
26
- - [ ] QA validation is completed.
27
- - [ ] All dependencies have been addressed.
28
- - [ ] All before release tasks have been completed.
29
- - [ ] All after release tasks are ready to be completed.
package/dist/P3/Lite.md DELETED
@@ -1,6 +0,0 @@
1
-
2
- # Merge Request Checklist
3
- - [ ] QA validation is completed.
4
- - [ ] All dependencies have been addressed.
5
- - [ ] All before release tasks have been completed.
6
- - [ ] All after release tasks are ready to be completed.
@@ -1,22 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Support TLS connection for rabbitmq. Closes CORE-2040
10
- * Set `sslConfig` with `Protocol = SslProtocols.None` when instantiating a new RabbitMqClient
11
- * Note that `ClickView.Clients.Queue` is not replaced with `ClickView.GoodStuff.Queues.RabbitMq` because the local cache api is still targeting .net2.0
12
-
13
-
14
- # Testing
15
- * CORE-2040
16
-
17
-
18
- # Merge Request Checklist
19
- - [ ] QA validation is completed.
20
- - [ ] All dependencies have been addressed.
21
- - [ ] All before release tasks have been completed.
22
- - [ ] All after release tasks are ready to be completed.
@@ -1,20 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * In octo variables, make sure to remove the `masterQueue`
6
-
7
-
8
- # Code Changes
9
- * Updated queue nuget packages. Partially implements INBOX-9146
10
-
11
-
12
- # Testing
13
- INBOX-9146
14
-
15
-
16
- # Merge Request Checklist
17
- - [ ] QA validation is completed.
18
- - [ ] All dependencies have been addressed.
19
- - [ ] All before release tasks have been completed.
20
- - [ ] All after release tasks are ready to be completed.
@@ -1,13 +0,0 @@
1
-
2
- # Code Changes
3
- - Added `TemplateType` and `AutoGenerated` to `ResourceMetadata`
4
-
5
-
6
- # Testing
7
-
8
-
9
- # Merge Request Checklist
10
- - [ ] QA validation is completed.
11
- - [ ] All dependencies have been addressed.
12
- - [ ] All before release tasks have been completed.
13
- - [ ] All after release tasks are ready to be completed.
@@ -1,28 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Octopus Deploy
6
- * [ ] Add `RabbitMq-Shared` variable set
7
- * [ ] Remove `queues:host`
8
- * [ ] Remove `queues:port`
9
-
10
-
11
- # Code Changes
12
- - Remove call to `GetExternalCustomerIdAsync()` in Wonde `GetNewUserDataAsync()` as the passed in model now has the `ExternalCustomerId`. Closes CORE-2027
13
- - Remove code related to `GetExternalCustomerIdAsync()` as there are no longer any callers
14
-
15
- - Update rabbitmq to use SSL. Implements [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
16
-
17
-
18
- # Testing
19
- Closes CORE-2027
20
-
21
- * [CORE-2044](https://clickview.atlassian.net/browse/CORE-2044)
22
-
23
-
24
- # Merge Request Checklist
25
- - [ ] QA validation is completed.
26
- - [ ] All dependencies have been addressed.
27
- - [ ] All before release tasks have been completed.
28
- - [ ] All after release tasks are ready to be completed.
@@ -1,27 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Support TLS connection for rabbitmq. Closes CORE-2039
10
- * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq`
11
- * Set `EnableSsl = true` and `IgnoreSslErrors = true` for `RabbitMqClientOptions`
12
- * Update `EventService` to subscribe and unsubscribe from rabbitMq
13
-
14
- * Fixes a bug where staff restriction wasn't being respected for shared content. Fixes CORE-2026
15
-
16
-
17
- # Testing
18
- * CORE-2039
19
-
20
- CORE-2026
21
-
22
-
23
- # Merge Request Checklist
24
- - [ ] QA validation is completed.
25
- - [ ] All dependencies have been addressed.
26
- - [ ] All before release tasks have been completed.
27
- - [ ] All after release tasks are ready to be completed.
@@ -1,23 +0,0 @@
1
-
2
- # Before Release
3
-
4
- ## Tasks
5
- * [ ] Add `RabbitMq-Shared` variable set in Octo
6
-
7
-
8
- # Code Changes
9
- * Nuget packages update
10
- * Replace `ClickView.Clients.Queue` with `ClickView.GoodStuff.Queues.RabbitMq` according to [the guide](https://clickview.quip.com/nlFMAsSqxeaU/2024-05-RabbitMQ-Upgrade)
11
- * Change the queues port from 5672 to 5671
12
- * In the RabbitMQ client options, set EnableSsl=true and IgnoreSslErrors=true. Implements INBOX-9149
13
-
14
-
15
- # Testing
16
- INBOX-9149
17
-
18
-
19
- # Merge Request Checklist
20
- - [ ] QA validation is completed.
21
- - [ ] All dependencies have been addressed.
22
- - [ ] All before release tasks have been completed.
23
- - [ ] All after release tasks are ready to be completed.