@shakerquiz/contracts 0.0.113 → 0.0.115

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 (2) hide show
  1. package/package.json +2 -2
  2. package/source/index.js +12 -0
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/contracts",
4
- "version": "0.0.113",
4
+ "version": "0.0.115",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {
@@ -16,7 +16,7 @@
16
16
  ],
17
17
  "exports": "./source/index.js",
18
18
  "devDependencies": {
19
- "@shakerquiz/utilities": "4.0.49",
19
+ "@shakerquiz/utilities": "4.0.51",
20
20
  "@types/bun": "1.3.7"
21
21
  }
22
22
  }
package/source/index.js CHANGED
@@ -8,7 +8,10 @@ import PATCH_city_currency_admin from './contracts/PATCH/city/currency/admin.jso
8
8
  import PATCH_city_timezone_admin from './contracts/PATCH/city/timezone/admin.json' with { type: 'json' }
9
9
  import PATCH_venue_admin from './contracts/PATCH/venue/admin.json' with { type: 'json' }
10
10
  import PATCH_venue_organizer from './contracts/PATCH/venue/organizer.json' with { type: 'json' }
11
+ import PATCH_venues_admin from './contracts/PATCH/venues/admin.json' with { type: 'json' }
12
+ import PATCH_venues_organizer from './contracts/PATCH/venues/organizer.json' with { type: 'json' }
11
13
  import PATCH_theme_admin from './contracts/PATCH/theme/admin.json' with { type: 'json' }
14
+ import PATCH_themes_admin from './contracts/PATCH/themes/admin.json' with { type: 'json' }
12
15
  import PATCH_registration_channel_admin from './contracts/PATCH/registration/channel/admin.json' with { type: 'json' }
13
16
  import PATCH_registration_channel_organizer from './contracts/PATCH/registration/channel/organizer.json' with { type: 'json' }
14
17
  import PATCH_registration_channel_Service from './contracts/PATCH/registration/channel/Service.json' with { type: 'json' }
@@ -51,7 +54,10 @@ export const Contracts = Object.freeze(
51
54
  'PATCH/city/timezone/admin',
52
55
  'PATCH/venue/admin',
53
56
  'PATCH/venue/organizer',
57
+ 'PATCH/venues/admin',
58
+ 'PATCH/venues/organizer',
54
59
  'PATCH/theme/admin',
60
+ 'PATCH/themes/admin',
55
61
  'PATCH/registration/channel/admin',
56
62
  'PATCH/registration/channel/organizer',
57
63
  'PATCH/registration/channel/Service',
@@ -96,7 +102,10 @@ export const Schemas = Object.freeze(
96
102
  PATCH_city_timezone_admin,
97
103
  PATCH_venue_admin,
98
104
  PATCH_venue_organizer,
105
+ PATCH_venues_admin,
106
+ PATCH_venues_organizer,
99
107
  PATCH_theme_admin,
108
+ PATCH_themes_admin,
100
109
  PATCH_registration_channel_admin,
101
110
  PATCH_registration_channel_organizer,
102
111
  PATCH_registration_channel_Service,
@@ -141,7 +150,10 @@ export const ContractSchema = Object.freeze(
141
150
  'PATCH/city/timezone/admin': PATCH_city_timezone_admin,
142
151
  'PATCH/venue/admin': PATCH_venue_admin,
143
152
  'PATCH/venue/organizer': PATCH_venue_organizer,
153
+ 'PATCH/venues/admin': PATCH_venues_admin,
154
+ 'PATCH/venues/organizer': PATCH_venues_organizer,
144
155
  'PATCH/theme/admin': PATCH_theme_admin,
156
+ 'PATCH/themes/admin': PATCH_themes_admin,
145
157
  'PATCH/registration/channel/admin': PATCH_registration_channel_admin,
146
158
  'PATCH/registration/channel/organizer': PATCH_registration_channel_organizer,
147
159
  'PATCH/registration/channel/Service': PATCH_registration_channel_Service,