@managespace/sdk 0.0.1

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 (37) hide show
  1. package/.eslintrc.js +9 -0
  2. package/.prettierrc.js +4 -0
  3. package/CHANGELOG.md +934 -0
  4. package/README.md +6 -0
  5. package/package.json +21 -0
  6. package/src/extensibility/functions/extensibility-function.ts +20 -0
  7. package/src/extensibility/functions/index.ts +2 -0
  8. package/src/extensibility/functions/project/all-topics.ts +34 -0
  9. package/src/extensibility/functions/project/billing.ts +249 -0
  10. package/src/extensibility/functions/project/document.ts +39 -0
  11. package/src/extensibility/functions/project/index.ts +5 -0
  12. package/src/extensibility/functions/project/managespace.ts +95 -0
  13. package/src/extensibility/functions/project/topics.type.ts +16 -0
  14. package/src/extensibility/index.ts +4 -0
  15. package/src/extensibility/types/control.ts +48 -0
  16. package/src/extensibility/types/default-result.ts +25 -0
  17. package/src/extensibility/types/extensibility.ts +12 -0
  18. package/src/extensibility/types/index.ts +5 -0
  19. package/src/extensibility/types/mapped-ports.ts +13 -0
  20. package/src/extensibility/types/step-function-signature.ts +11 -0
  21. package/src/extensibility/types/workflow-step.ts +63 -0
  22. package/src/extensibility/utils/index.ts +1 -0
  23. package/src/extensibility/utils/port.enum.ts +5 -0
  24. package/src/extensibility/workflow/index.ts +2 -0
  25. package/src/extensibility/workflow/workflow-step.ts +23 -0
  26. package/src/extensibility/workflow/workflow.ts +25 -0
  27. package/src/generated/.openapi-generator/FILES +9 -0
  28. package/src/generated/.openapi-generator/VERSION +1 -0
  29. package/src/generated/.openapi-generator-ignore +23 -0
  30. package/src/generated/api.ts +19623 -0
  31. package/src/generated/base.ts +86 -0
  32. package/src/generated/common.ts +150 -0
  33. package/src/generated/configuration.ts +110 -0
  34. package/src/generated/git_push.sh +57 -0
  35. package/src/generated/index.ts +18 -0
  36. package/src/index.ts +2 -0
  37. package/tsconfig.json +10 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,934 @@
1
+ ## 0.0.220 (2024-12-12)
2
+
3
+
4
+ ### 🚀 Features
5
+
6
+ - **extensibility:** seperate events for jason and jackson
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Theo Brown
12
+
13
+ ## 0.0.219 (2024-12-12)
14
+
15
+
16
+ ### 🚀 Features
17
+
18
+ - **extensibility:** added a test event for jackson and jason to play with
19
+
20
+
21
+ ### ❤️ Thank You
22
+
23
+ - Theo Brown
24
+
25
+ ## 0.0.218 (2024-12-11)
26
+
27
+
28
+ ### 🚀 Features
29
+
30
+ - **extensibility:** add create template
31
+
32
+
33
+ ### ❤️ Thank You
34
+
35
+ - Theo Brown
36
+
37
+ ## 0.0.217 (2024-12-11)
38
+
39
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
40
+
41
+ ## 0.0.216 (2024-12-11)
42
+
43
+
44
+ ### 🚀 Features
45
+
46
+ - **org-service:** added cancel subscriptionBIlling endpoint
47
+
48
+ - **org-service,extensibility-service,fetch-sdk,node-sdk:** added query to getSubscriptions to include assetId
49
+
50
+ - **document-service:** add a create template endpoint
51
+
52
+
53
+ ### ❤️ Thank You
54
+
55
+ - breonnaliew
56
+ - Theo Brown
57
+
58
+ ## 0.0.215 (2024-11-26)
59
+
60
+
61
+ ### 🚀 Features
62
+
63
+ - **org-service,extensibility-service,fetch-sdk,node-sdk:** added query to getSubscriptions to include assetId
64
+
65
+
66
+ ### ❤️ Thank You
67
+
68
+ - breonnaliew
69
+
70
+ ## 0.0.214 (2024-11-26)
71
+
72
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
73
+
74
+ ## 0.0.213 (2024-11-26)
75
+
76
+
77
+ ### 🚀 Features
78
+
79
+ - openapi for checklist/task/calendar
80
+
81
+ - added calendar events to get calendar events api call
82
+
83
+ - update all
84
+
85
+ - updated versioning
86
+
87
+ - Update package versions and dependencies
88
+
89
+ - update sdk versioning, change applied tiers to string
90
+
91
+ - update sdk version to 25, edit billing dtos to have camelCase
92
+
93
+ - added plan dto
94
+
95
+ - update sdk to version 27
96
+
97
+ - move create customer to billing service
98
+
99
+ - separate billing functions by id and add extensibility instance merging
100
+
101
+ - update chartOfAccounts naming
102
+
103
+ - udpate chart of accounts aming
104
+
105
+ - update nodesdk versioning
106
+
107
+ - update triggerEvent values in BillingService
108
+
109
+ - remove base bagination from get calendar events
110
+
111
+ - update extensibility with CreatePaymentRun
112
+
113
+ - move customer and contact billing services to billingservice folder
114
+
115
+ - remove word create from url path; add createProduct and Plan services;update versioning
116
+
117
+ - added event listening to customer creation, modified schema for customer to match ordway
118
+
119
+ - testing customer response
120
+
121
+ - pnpm clean update
122
+
123
+ - update extensibility version
124
+
125
+ - updated extensibility version
126
+
127
+ - completed event circle with updated topic names create_customer_internal; create_customer_external
128
+
129
+ - updated versionings
130
+
131
+ - added addContacts to customer functionality; updating customer to billing service
132
+
133
+ - added put for contacts array and create contacts for individual contacts
134
+
135
+ - updated schema for task/checklist to have createdById for user, remove duplicate findUnique searches for returns
136
+
137
+ - added create subscription, create payment, get revenue rules to billing
138
+
139
+ - updated versions node,fetch,extensibility, lambdas
140
+
141
+ - removed constraints in schema
142
+
143
+ - testing create customer event handling
144
+
145
+ - Add getStatements; Update extensibility version 133
146
+
147
+ - added updateBalance for customers on ms db
148
+
149
+ - testing kafka commented out unfinished dto
150
+
151
+ - added getCustomers, paymentcreaed and invoice created topics
152
+
153
+ - added CustomerBilling to billing service
154
+
155
+ - change chart of account from default to defaultValue
156
+
157
+ - changed zip naming for masterlambda
158
+
159
+ - **auth:** add get users by email
160
+
161
+ - **workflow:** refactor workflows to be defined in the new way
162
+
163
+ - **workflow:** add manual input steps to workflows
164
+
165
+ - **node-sdk:** update deps
166
+
167
+ - **extensibility-service:** remove event enums
168
+
169
+ - **extensibility-service, common:** make workflows run without delay; use events and update events service
170
+
171
+ - **extensibility:** add payment response to imports
172
+
173
+ - **extensibility-service:** add delay to workflows
174
+
175
+ - **transformation:** make transformation lambda work with the new events
176
+
177
+ - **extensibility-service:** remove transformation lambda and rely on extensibility function to transform events
178
+
179
+ - **extensibility-service,master,common,org-service:** add an automated user and remove the old workflow user
180
+
181
+ - **misc:** update nx to pass --no-verify on commit
182
+
183
+ - **misc:** clean up packages
184
+
185
+ - **misc:** run format on project so it is all aligned
186
+
187
+ - **extensibility:** remove schemas, add customer ID to document create event
188
+
189
+ - **org-service:** add name query for get plans
190
+
191
+ - **extensibility:** add name to get plans ext. project
192
+
193
+ - **org-service,extensibility:** add active query
194
+
195
+ - **org-service:** added cancel subscriptionBIlling endpoint
196
+
197
+
198
+ ### 🩹 Fixes
199
+
200
+ - **release:** fix the release script to include new projects and builds.
201
+
202
+
203
+ ### ❤️ Thank You
204
+
205
+ - Breonna
206
+ - breonnaliew
207
+ - Emma Baskerville
208
+ - Theo Brown
209
+
210
+ ## 0.0.209 (2024-11-25)
211
+
212
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
213
+
214
+ ## 0.0.208 (2024-11-25)
215
+
216
+
217
+ ### 🚀 Features
218
+
219
+ - **org-service,extensibility:** add active query
220
+
221
+
222
+ ### ❤️ Thank You
223
+
224
+ - Theo Brown
225
+
226
+ ## 0.0.207 (2024-11-25)
227
+
228
+
229
+ ### 🚀 Features
230
+
231
+ - **extensibility:** add name to get plans ext. project
232
+
233
+
234
+ ### ❤️ Thank You
235
+
236
+ - Theo Brown
237
+
238
+ ## 0.0.206 (2024-11-25)
239
+
240
+
241
+ ### 🚀 Features
242
+
243
+ - **org-service:** add name query for get plans
244
+
245
+
246
+ ### ❤️ Thank You
247
+
248
+ - Theo Brown
249
+
250
+ ## 0.0.205 (2024-11-25)
251
+
252
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
253
+
254
+ ## 0.0.204 (2024-11-25)
255
+
256
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
257
+
258
+ ## 0.0.203 (2024-11-25)
259
+
260
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
261
+
262
+ ## 0.0.202 (2024-11-25)
263
+
264
+
265
+ ### 🚀 Features
266
+
267
+ - **extensibility:** remove schemas, add customer ID to document create event
268
+
269
+
270
+ ### ❤️ Thank You
271
+
272
+ - Theo Brown
273
+
274
+ ## 0.0.201 (2024-11-24)
275
+
276
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
277
+
278
+ ## 0.0.200 (2024-11-22)
279
+
280
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
281
+
282
+ ## 0.0.199 (2024-11-22)
283
+
284
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
285
+
286
+ ## 0.0.198 (2024-11-22)
287
+
288
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
289
+
290
+ ## 0.0.197 (2024-11-22)
291
+
292
+
293
+ ### 🚀 Features
294
+
295
+ - **misc:** run format on project so it is all aligned
296
+
297
+
298
+ ### ❤️ Thank You
299
+
300
+ - Theo Brown
301
+
302
+ ## 0.0.196 (2024-11-21)
303
+
304
+ ### 🚀 Features
305
+
306
+ - **misc:** clean up packages
307
+
308
+ ### ❤️ Thank You
309
+
310
+ - q-state
311
+ - Theo Brown
312
+
313
+ ## 0.0.195 (2024-11-21)
314
+
315
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
316
+
317
+ ## 0.0.194 (2024-11-21)
318
+
319
+ ### 🚀 Features
320
+
321
+ - changed zip naming for masterlambda
322
+
323
+ ### ❤️ Thank You
324
+
325
+ - breonnaliew
326
+ - Theo Brown
327
+
328
+ ## 0.0.193 (2024-11-21)
329
+
330
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
331
+
332
+ ## 0.0.192 (2024-11-21)
333
+
334
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
335
+
336
+ ## 0.0.191 (2024-11-21)
337
+
338
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
339
+
340
+ ## 0.0.190 (2024-11-21)
341
+
342
+ ### 🚀 Features
343
+
344
+ - **extensibility-service,master,common,org-service:** add an automated user and remove the old workflow user
345
+
346
+ - **misc:** update nx to pass --no-verify on commit
347
+
348
+ ### 🩹 Fixes
349
+
350
+ - **release:** fix the release script to include new projects and builds.
351
+
352
+ ### ❤️ Thank You
353
+
354
+ - Theo Brown
355
+
356
+ ## 0.0.189 (2024-11-21)
357
+
358
+ ### 🚀 Features
359
+
360
+ - **extensibility-service,master,common,org-service:** add an automated user and remove the old workflow user
361
+
362
+ ### 🩹 Fixes
363
+
364
+ - **release:** fix the release script to include new projects and builds.
365
+
366
+ ### ❤️ Thank You
367
+
368
+ - Theo Brown
369
+
370
+ ## 0.0.188 (2024-11-20)
371
+
372
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
373
+
374
+ ## 0.0.187 (2024-11-20)
375
+
376
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
377
+
378
+ ## 0.0.186 (2024-11-20)
379
+
380
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
381
+
382
+ ## 0.0.185 (2024-11-20)
383
+
384
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
385
+
386
+ ## 0.0.184 (2024-11-20)
387
+
388
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
389
+
390
+ ## 0.0.183 (2024-11-19)
391
+
392
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
393
+
394
+ ## 0.0.182 (2024-11-19)
395
+
396
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
397
+
398
+ ## 0.0.181 (2024-11-19)
399
+
400
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
401
+
402
+ ## 0.0.180 (2024-11-19)
403
+
404
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
405
+
406
+ ## 0.0.179 (2024-11-19)
407
+
408
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
409
+
410
+ ## 0.0.178 (2024-11-19)
411
+
412
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
413
+
414
+ ## 0.0.177 (2024-11-19)
415
+
416
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
417
+
418
+ ## 0.0.176 (2024-11-19)
419
+
420
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
421
+
422
+ ## 0.0.175 (2024-11-19)
423
+
424
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
425
+
426
+ ## 0.0.174 (2024-11-19)
427
+
428
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
429
+
430
+ ## 0.0.173 (2024-11-19)
431
+
432
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
433
+
434
+ ## 0.0.172 (2024-11-19)
435
+
436
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
437
+
438
+ ## 0.0.171 (2024-11-19)
439
+
440
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
441
+
442
+ ## 0.0.170 (2024-11-19)
443
+
444
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
445
+
446
+ ## 0.0.169 (2024-11-19)
447
+
448
+ ### 🚀 Features
449
+
450
+ - adding event service to send messages to kafka
451
+
452
+ - update chartOfAccounts naming
453
+
454
+ - added event listening to customer creation, modified schema for customer to match ordway
455
+
456
+ - testing customer response
457
+
458
+ - pnpm clean update
459
+
460
+ - update extensibility version
461
+
462
+ - updated extensibility version
463
+
464
+ - completed event circle with updated topic names create_customer_internal; create_customer_external
465
+
466
+ - regenerated openapi for update customer
467
+
468
+ - updated versionings
469
+
470
+ - added addContacts to customer functionality; updating customer to billing service
471
+
472
+ - added put for contacts array and create contacts for individual contacts
473
+
474
+ - modified task/checklist to have required createdBy id (from orgContext), added getChartofAccount(s) to billing
475
+
476
+ - updated schema for task/checklist to have createdById for user, remove duplicate findUnique searches for returns
477
+
478
+ - added create subscription, create payment, get revenue rules to billing
479
+
480
+ - updated versions node,fetch,extensibility, lambdas
481
+
482
+ - removed constraints in schema
483
+
484
+ - testing create customer event handling
485
+
486
+ - Add getStatements; Update extensibility version 133
487
+
488
+ - added updateBalance for customers on ms db
489
+
490
+ - testing kafka commented out unfinished dto
491
+
492
+ - added getCustomers, paymentcreaed and invoice created topics
493
+
494
+ - added CustomerBilling to billing service
495
+
496
+ - change chart of account from default to defaultValue
497
+
498
+ - **node-sdk:** update deps
499
+
500
+ - **extensibility-service:** remove event enums
501
+
502
+ - **extensibility-service, common:** make workflows run without delay; use events and update events service
503
+
504
+ - **extensibility:** add payment response to imports
505
+
506
+ - **extensibility-service:** add delay to workflows
507
+
508
+ - **transformation:** make transformation lambda work with the new events
509
+
510
+ - **extensibility-service:** remove transformation lambda and rely on extensibility function to transform events
511
+
512
+ ### 🩹 Fixes
513
+
514
+ - Update BillingRun dto
515
+
516
+ - Update response types in billing.controller
517
+
518
+ - Update billingrun dto
519
+
520
+ - Update createbillingrun and createpaymentrun dtos
521
+
522
+ - Update create-product-billing and plan-charge dtos
523
+
524
+ ### ❤️ Thank You
525
+
526
+ - breonnaliew
527
+ - Emma Baskerville
528
+ - Theo Brown
529
+
530
+ ## 0.0.72 (2024-10-29)
531
+
532
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
533
+
534
+ ## 0.0.71 (2024-10-29)
535
+
536
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
537
+
538
+ ## 0.0.70 (2024-10-29)
539
+
540
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
541
+
542
+ ## 0.0.69 (2024-10-29)
543
+
544
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
545
+
546
+ ## 0.0.68 (2024-10-29)
547
+
548
+ ### 🚀 Features
549
+
550
+ - udpate chart of accounts aming
551
+
552
+ - update openapi and nodesdk versioning
553
+
554
+ - update nodesdk versioning
555
+
556
+ - update triggerEvent values in BillingService
557
+
558
+ - remove base bagination from get calendar events
559
+
560
+ - update extensibility with CreatePaymentRun
561
+
562
+ - move customer and contact billing services to billingservice folder
563
+
564
+ - Update PluginController
565
+
566
+ - remove word create from url path; add createProduct and Plan services;update versioning
567
+
568
+ - add create plan; edit plan charge dtos
569
+
570
+ ### ❤️ Thank You
571
+
572
+ - breonnaliew
573
+ - Emma Baskerville
574
+
575
+ ## 0.0.51 (2024-10-24)
576
+
577
+ ### 🚀 Features
578
+
579
+ - separate billing functions by id and add extensibility instance merging
580
+
581
+ - **workflow:** add manual input steps to workflows
582
+
583
+ ### ❤️ Thank You
584
+
585
+ - Emma Baskerville
586
+ - Theo Brown
587
+
588
+ ## 0.0.50 (2024-10-24)
589
+
590
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
591
+
592
+ ## 0.0.49 (2024-10-24)
593
+
594
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
595
+
596
+ ## 0.0.48 (2024-10-24)
597
+
598
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
599
+
600
+ ## 0.0.47 (2024-10-24)
601
+
602
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
603
+
604
+ ## 0.0.46 (2024-10-24)
605
+
606
+ ### 🚀 Features
607
+
608
+ - **workflow:** refactor workflows to be defined in the new way
609
+
610
+ ### ❤️ Thank You
611
+
612
+ - Theo Brown
613
+
614
+ ## 0.0.45 (2024-10-24)
615
+
616
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
617
+
618
+ ## 0.0.44 (2024-10-24)
619
+
620
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
621
+
622
+ ## 0.0.43 (2024-10-24)
623
+
624
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
625
+
626
+ ## 0.0.42 (2024-10-24)
627
+
628
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
629
+
630
+ ## 0.0.41 (2024-10-23)
631
+
632
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
633
+
634
+ ## 0.0.40 (2024-10-23)
635
+
636
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
637
+
638
+ ## 0.0.39 (2024-10-23)
639
+
640
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
641
+
642
+ ## 0.0.38 (2024-10-22)
643
+
644
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
645
+
646
+ ## 0.0.35 (2024-10-22)
647
+
648
+ ### 🚀 Features
649
+
650
+ - testing customer_created
651
+
652
+ - update customer contact and address dto
653
+
654
+ - generate openapi for contact, customer, address
655
+
656
+ - updated versioning
657
+
658
+ - Update package versions and dependencies
659
+
660
+ - regenerate openapi with new getInvoices url
661
+
662
+ - update sdk versioning, change applied tiers to string
663
+
664
+ - updated openapi with applied tiers to string change
665
+
666
+ - update sdk version to 25, edit billing dtos to have camelCase
667
+
668
+ - added plan dto
669
+
670
+ - update sdk to version 27
671
+
672
+ - update sdk to version 29, removed unused fields in payment dto
673
+
674
+ - updated sdks to version 30 with subscriptions, charges, billingruns endpoints
675
+
676
+ - update sdk versions to 30
677
+
678
+ - regenerated openapi with planId in params for getCharges
679
+
680
+ - move create customer to billing service
681
+
682
+ - add optional id field to billing endpoints
683
+
684
+ - update node and fetch versioning
685
+
686
+ - create separate individual billing GET functions
687
+
688
+ - update sdk versioning
689
+
690
+ - return invoice response as array
691
+
692
+ - add id to query instead of param
693
+
694
+ - update sdk verison to 38
695
+
696
+ - update openapi and sdk version to 39
697
+
698
+ - update sdk version
699
+
700
+ - update openapi and sdk versioning to 40
701
+
702
+ ### ❤️ Thank You
703
+
704
+ - Breonna
705
+ - breonnaliew
706
+ - Emma Baskerville
707
+ - Theo Brown
708
+
709
+ ## 0.0.14 (2024-09-24)
710
+
711
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
712
+
713
+ ## 0.0.13 (2024-09-24)
714
+
715
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
716
+
717
+ ## 0.0.12 (2024-09-24)
718
+
719
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
720
+
721
+ ## 0.0.11 (2024-09-24)
722
+
723
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
724
+
725
+ ## 0.0.10 (2024-09-24)
726
+
727
+ ### 🚀 Features
728
+
729
+ - add taskTemplate to schema and add services; add rrule library
730
+
731
+ - version changes and rrule installation
732
+
733
+ - openapi for checklist/task/calendar
734
+
735
+ - added calendar events to get calendar events api call
736
+
737
+ - update all
738
+
739
+ ### ❤️ Thank You
740
+
741
+ - Breonna
742
+ - Emma Baskerville
743
+ - Theo Brown
744
+
745
+ ## 0.0.9 (2024-08-30)
746
+
747
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
748
+
749
+ ## 0.0.8 (2024-08-29)
750
+
751
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
752
+
753
+ ## 0.0.7 (2024-08-29)
754
+
755
+ ### 🚀 Features
756
+
757
+ - **auth:** add get users by email
758
+
759
+ ### ❤️ Thank You
760
+
761
+ - Breonna
762
+ - Theo Brown
763
+
764
+ ## 0.0.6 (2024-08-23)
765
+
766
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
767
+
768
+ ## 0.0.5 (2024-08-23)
769
+
770
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
771
+
772
+ ## 0.0.4 (2024-08-22)
773
+
774
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
775
+
776
+ ## 0.0.3 (2024-08-16)
777
+
778
+ This was a version bump only for extensibility to align it with other projects, there were no code changes.
779
+
780
+ ## 0.0.118 (2024-08-15)
781
+
782
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
783
+
784
+ ## 0.0.117 (2024-08-15)
785
+
786
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
787
+
788
+ ## 0.0.116 (2024-08-15)
789
+
790
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
791
+
792
+ ## 0.0.115 (2024-08-15)
793
+
794
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
795
+
796
+ ## 0.0.114 (2024-08-15)
797
+
798
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
799
+
800
+ ## 0.0.113 (2024-08-15)
801
+
802
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
803
+
804
+ ## 0.0.112 (2024-08-15)
805
+
806
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
807
+
808
+ ## 0.0.111 (2024-08-15)
809
+
810
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
811
+
812
+ ## 0.0.110 (2024-08-15)
813
+
814
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
815
+
816
+ ## 0.0.109 (2024-08-15)
817
+
818
+ ### 🚀 Features
819
+
820
+ - add deploy for application events service
821
+
822
+ ### ❤️ Thank You
823
+
824
+ - Theo Brown
825
+
826
+ ## 0.0.105 (2024-08-09)
827
+
828
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
829
+
830
+ ## 0.0.104 (2024-08-09)
831
+
832
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
833
+
834
+ ## 0.0.103 (2024-08-09)
835
+
836
+ ### 🚀 Features
837
+
838
+ - fix worklow-lib release issues
839
+
840
+ ### ❤️ Thank You
841
+
842
+ - Theo Brown
843
+
844
+ ## 0.0.102 (2024-08-08)
845
+
846
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
847
+
848
+ ## 0.0.101 (2024-08-08)
849
+
850
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
851
+
852
+ ## 0.0.100 (2024-08-08)
853
+
854
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
855
+
856
+ ## 0.0.99 (2024-08-08)
857
+
858
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
859
+
860
+ ## 0.0.98 (2024-08-08)
861
+
862
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
863
+
864
+ ## 0.0.97 (2024-08-08)
865
+
866
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
867
+
868
+ ## 0.0.96 (2024-08-08)
869
+
870
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
871
+
872
+ ## 0.0.94 (2024-08-08)
873
+
874
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
875
+
876
+ ## 0.0.93 (2024-08-08)
877
+
878
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
879
+
880
+ ## 0.0.92 (2024-08-08)
881
+
882
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
883
+
884
+ ## 0.0.91 (2024-08-08)
885
+
886
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
887
+
888
+ ## 0.0.90 (2024-08-08)
889
+
890
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
891
+
892
+ ## 0.0.89 (2024-08-08)
893
+
894
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
895
+
896
+ ## 0.0.88 (2024-08-08)
897
+
898
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
899
+
900
+ ## 0.0.87 (2024-08-08)
901
+
902
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
903
+
904
+ ## 0.0.86 (2024-08-08)
905
+
906
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
907
+
908
+ ## 0.0.85 (2024-08-08)
909
+
910
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
911
+
912
+ ## 0.0.84 (2024-08-08)
913
+
914
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
915
+
916
+ ## 0.0.83 (2024-08-08)
917
+
918
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
919
+
920
+ ## 0.0.82 (2024-08-08)
921
+
922
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
923
+
924
+ ## 0.0.81 (2024-08-08)
925
+
926
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
927
+
928
+ ## 0.0.80 (2024-08-07)
929
+
930
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.
931
+
932
+ ## 0.0.79 (2024-08-07)
933
+
934
+ This was a version bump only for workflow-lib to align it with other projects, there were no code changes.