@voxgig/sdkgen 0.43.0 → 0.45.0

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 (127) hide show
  1. package/bin/voxgig-sdkgen +1 -1
  2. package/dist/cmp/ReadmeEntity.js +9 -153
  3. package/dist/cmp/ReadmeEntity.js.map +1 -1
  4. package/dist/cmp/ReadmeIntro.js +9 -14
  5. package/dist/cmp/ReadmeIntro.js.map +1 -1
  6. package/dist/cmp/ReadmeModel.js +6 -4
  7. package/dist/cmp/ReadmeModel.js.map +1 -1
  8. package/dist/cmp/ReadmeOptions.js +9 -61
  9. package/dist/cmp/ReadmeOptions.js.map +1 -1
  10. package/dist/cmp/ReadmeRef.js +10 -1328
  11. package/dist/cmp/ReadmeRef.js.map +1 -1
  12. package/dist/sdkgen.d.ts +2 -2
  13. package/dist/sdkgen.js +2 -1
  14. package/dist/sdkgen.js.map +1 -1
  15. package/dist/utility.d.ts +2 -1
  16. package/dist/utility.js +9 -0
  17. package/dist/utility.js.map +1 -1
  18. package/package.json +1 -1
  19. package/project/.sdk/src/cmp/go/Config_go.ts +9 -4
  20. package/project/.sdk/src/cmp/go/Gitignore_go.ts +47 -0
  21. package/project/.sdk/src/cmp/go/Main_go.ts +3 -0
  22. package/project/.sdk/src/cmp/go/ReadmeEntity_go.ts +138 -0
  23. package/project/.sdk/src/cmp/go/ReadmeHowto_go.ts +6 -3
  24. package/project/.sdk/src/cmp/go/ReadmeIntro_go.ts +18 -0
  25. package/project/.sdk/src/cmp/go/ReadmeModel_go.ts +6 -3
  26. package/project/.sdk/src/cmp/go/ReadmeOptions_go.ts +58 -0
  27. package/project/.sdk/src/cmp/go/ReadmeQuick_go.ts +11 -7
  28. package/project/.sdk/src/cmp/go/ReadmeRef_go.ts +354 -0
  29. package/project/.sdk/src/cmp/go/ReadmeTopQuick_go.ts +6 -4
  30. package/project/.sdk/src/cmp/go/TestDirect_go.ts +18 -8
  31. package/project/.sdk/src/cmp/go/TestEntity_go.ts +105 -54
  32. package/project/.sdk/src/cmp/js/Config_js.ts +18 -0
  33. package/project/.sdk/src/cmp/js/Gitignore_js.ts +35 -0
  34. package/project/.sdk/src/cmp/js/Main_js.ts +3 -0
  35. package/project/.sdk/src/cmp/js/ReadmeEntity_js.ts +138 -0
  36. package/project/.sdk/src/cmp/js/ReadmeHowto_js.ts +11 -6
  37. package/project/.sdk/src/cmp/js/ReadmeIntro_js.ts +18 -0
  38. package/project/.sdk/src/cmp/js/ReadmeModel_js.ts +6 -3
  39. package/project/.sdk/src/cmp/js/ReadmeOptions_js.ts +58 -0
  40. package/project/.sdk/src/cmp/js/ReadmeQuick_js.ts +6 -4
  41. package/project/.sdk/src/cmp/js/ReadmeRef_js.ts +384 -0
  42. package/project/.sdk/src/cmp/js/ReadmeTopQuick_js.ts +6 -4
  43. package/project/.sdk/src/cmp/js/TestDirect_js.ts +23 -12
  44. package/project/.sdk/src/cmp/js/TestEntity_js.ts +107 -74
  45. package/project/.sdk/src/cmp/js/fragment/Config.fragment.js +1 -5
  46. package/project/.sdk/src/cmp/lua/Config_lua.ts +9 -4
  47. package/project/.sdk/src/cmp/lua/Gitignore_lua.ts +39 -0
  48. package/project/.sdk/src/cmp/lua/Main_lua.ts +3 -0
  49. package/project/.sdk/src/cmp/lua/ReadmeEntity_lua.ts +138 -0
  50. package/project/.sdk/src/cmp/lua/ReadmeHowto_lua.ts +6 -3
  51. package/project/.sdk/src/cmp/lua/ReadmeIntro_lua.ts +18 -0
  52. package/project/.sdk/src/cmp/lua/ReadmeModel_lua.ts +6 -3
  53. package/project/.sdk/src/cmp/lua/ReadmeOptions_lua.ts +58 -0
  54. package/project/.sdk/src/cmp/lua/ReadmeQuick_lua.ts +6 -4
  55. package/project/.sdk/src/cmp/lua/ReadmeRef_lua.ts +360 -0
  56. package/project/.sdk/src/cmp/lua/ReadmeTopQuick_lua.ts +6 -4
  57. package/project/.sdk/src/cmp/lua/TestDirect_lua.ts +18 -8
  58. package/project/.sdk/src/cmp/lua/TestEntity_lua.ts +95 -51
  59. package/project/.sdk/src/cmp/php/Config_php.ts +10 -8
  60. package/project/.sdk/src/cmp/php/Gitignore_php.ts +33 -0
  61. package/project/.sdk/src/cmp/php/Main_php.ts +3 -0
  62. package/project/.sdk/src/cmp/php/ReadmeEntity_php.ts +138 -0
  63. package/project/.sdk/src/cmp/php/ReadmeHowto_php.ts +6 -3
  64. package/project/.sdk/src/cmp/php/ReadmeIntro_php.ts +18 -0
  65. package/project/.sdk/src/cmp/php/ReadmeModel_php.ts +6 -3
  66. package/project/.sdk/src/cmp/php/ReadmeOptions_php.ts +58 -0
  67. package/project/.sdk/src/cmp/php/ReadmeQuick_php.ts +6 -4
  68. package/project/.sdk/src/cmp/php/ReadmeRef_php.ts +358 -0
  69. package/project/.sdk/src/cmp/php/ReadmeTopQuick_php.ts +6 -4
  70. package/project/.sdk/src/cmp/php/TestDirect_php.ts +18 -8
  71. package/project/.sdk/src/cmp/php/TestEntity_php.ts +101 -54
  72. package/project/.sdk/src/cmp/py/Config_py.ts +9 -4
  73. package/project/.sdk/src/cmp/py/Gitignore_py.ts +55 -0
  74. package/project/.sdk/src/cmp/py/Main_py.ts +3 -0
  75. package/project/.sdk/src/cmp/py/ReadmeEntity_py.ts +138 -0
  76. package/project/.sdk/src/cmp/py/ReadmeHowto_py.ts +6 -3
  77. package/project/.sdk/src/cmp/py/ReadmeIntro_py.ts +18 -0
  78. package/project/.sdk/src/cmp/py/ReadmeModel_py.ts +6 -3
  79. package/project/.sdk/src/cmp/py/ReadmeOptions_py.ts +58 -0
  80. package/project/.sdk/src/cmp/py/ReadmeQuick_py.ts +9 -6
  81. package/project/.sdk/src/cmp/py/ReadmeRef_py.ts +356 -0
  82. package/project/.sdk/src/cmp/py/ReadmeTopQuick_py.ts +9 -6
  83. package/project/.sdk/src/cmp/py/TestDirect_py.ts +18 -8
  84. package/project/.sdk/src/cmp/py/TestEntity_py.ts +100 -50
  85. package/project/.sdk/src/cmp/rb/Config_rb.ts +9 -4
  86. package/project/.sdk/src/cmp/rb/Gitignore_rb.ts +38 -0
  87. package/project/.sdk/src/cmp/rb/Main_rb.ts +3 -0
  88. package/project/.sdk/src/cmp/rb/ReadmeEntity_rb.ts +138 -0
  89. package/project/.sdk/src/cmp/rb/ReadmeHowto_rb.ts +6 -3
  90. package/project/.sdk/src/cmp/rb/ReadmeIntro_rb.ts +18 -0
  91. package/project/.sdk/src/cmp/rb/ReadmeModel_rb.ts +6 -3
  92. package/project/.sdk/src/cmp/rb/ReadmeOptions_rb.ts +58 -0
  93. package/project/.sdk/src/cmp/rb/ReadmeQuick_rb.ts +6 -4
  94. package/project/.sdk/src/cmp/rb/ReadmeRef_rb.ts +361 -0
  95. package/project/.sdk/src/cmp/rb/ReadmeTopQuick_rb.ts +6 -4
  96. package/project/.sdk/src/cmp/rb/TestDirect_rb.ts +18 -8
  97. package/project/.sdk/src/cmp/rb/TestEntity_rb.ts +95 -51
  98. package/project/.sdk/src/cmp/ts/Config_ts.ts +18 -0
  99. package/project/.sdk/src/cmp/ts/Gitignore_ts.ts +37 -0
  100. package/project/.sdk/src/cmp/ts/Main_ts.ts +3 -0
  101. package/project/.sdk/src/cmp/ts/ReadmeEntity_ts.ts +138 -0
  102. package/project/.sdk/src/cmp/ts/ReadmeHowto_ts.ts +11 -6
  103. package/project/.sdk/src/cmp/ts/ReadmeIntro_ts.ts +18 -0
  104. package/project/.sdk/src/cmp/ts/ReadmeModel_ts.ts +9 -5
  105. package/project/.sdk/src/cmp/ts/ReadmeOptions_ts.ts +58 -0
  106. package/project/.sdk/src/cmp/ts/ReadmeQuick_ts.ts +6 -4
  107. package/project/.sdk/src/cmp/ts/ReadmeRef_ts.ts +384 -0
  108. package/project/.sdk/src/cmp/ts/ReadmeTopQuick_ts.ts +6 -4
  109. package/project/.sdk/src/cmp/ts/TestDirect_ts.ts +68 -20
  110. package/project/.sdk/src/cmp/ts/TestEntity_ts.ts +109 -74
  111. package/project/.sdk/src/cmp/ts/fragment/Config.fragment.ts +1 -5
  112. package/project/.sdk/tm/go/utility/prepare_auth.go +15 -1
  113. package/project/.sdk/tm/js/src/utility/PrepareAuthUtility.js +7 -1
  114. package/project/.sdk/tm/lua/utility/prepare_auth.lua +9 -1
  115. package/project/.sdk/tm/php/utility/PrepareAuth.php +11 -1
  116. package/project/.sdk/tm/py/utility/prepare_auth.py +10 -1
  117. package/project/.sdk/tm/rb/utility/prepare_auth.rb +8 -1
  118. package/project/.sdk/tm/ts/src/utility/MakeUrlUtility.ts +7 -8
  119. package/project/.sdk/tm/ts/src/utility/PrepareAuthUtility.ts +7 -1
  120. package/src/cmp/ReadmeEntity.ts +11 -178
  121. package/src/cmp/ReadmeIntro.ts +11 -25
  122. package/src/cmp/ReadmeModel.ts +7 -5
  123. package/src/cmp/ReadmeOptions.ts +12 -74
  124. package/src/cmp/ReadmeRef.ts +11 -1372
  125. package/src/sdkgen.ts +2 -1
  126. package/src/utility.ts +12 -0
  127. /package/project/.sdk/tm/go/utility/{make_target.go → make_point.go} +0 -0
@@ -1,5 +1,5 @@
1
1
 
2
- import { cmp, each, Content } from '@voxgig/sdkgen'
2
+ import { cmp, each, Content, isAuthActive } from '@voxgig/sdkgen'
3
3
 
4
4
  import {
5
5
  KIT,
@@ -18,15 +18,17 @@ const ReadmeQuick = cmp(function ReadmeQuick(props: any) {
18
18
  e.active !== false && e.ancestors && e.ancestors.length > 0
19
19
  ) as any
20
20
 
21
+ const apikeyArg = isAuthActive(model)
22
+ ? `\n "apikey" => getenv("${model.NAME}_APIKEY"),\n`
23
+ : ''
24
+
21
25
  Content(`### 1. Create a client
22
26
 
23
27
  \`\`\`php
24
28
  <?php
25
29
  require_once '${model.const.Name.toLowerCase()}_sdk.php';
26
30
 
27
- $client = new ${model.const.Name}SDK([
28
- "apikey" => getenv("${model.NAME}_APIKEY"),
29
- ]);
31
+ $client = new ${model.const.Name}SDK([${apikeyArg}]);
30
32
  \`\`\`
31
33
 
32
34
  `)
@@ -0,0 +1,358 @@
1
+
2
+ import { cmp, each, Content, File, isAuthActive } from '@voxgig/sdkgen'
3
+
4
+ import {
5
+ KIT,
6
+ getModelPath,
7
+ } from '@voxgig/apidef'
8
+
9
+
10
+ const OP_SIGNATURES: Record<string, { sig: string, returns: string, desc: string }> = {
11
+ load: {
12
+ sig: 'load(array $reqmatch, ?array $ctrl = null): array',
13
+ returns: 'array [$result, $err]',
14
+ desc: 'Load a single entity matching the given criteria.',
15
+ },
16
+ list: {
17
+ sig: 'list(array $reqmatch, ?array $ctrl = null): array',
18
+ returns: 'array [$result, $err]',
19
+ desc: 'List entities matching the given criteria. Returns an array.',
20
+ },
21
+ create: {
22
+ sig: 'create(array $reqdata, ?array $ctrl = null): array',
23
+ returns: 'array [$result, $err]',
24
+ desc: 'Create a new entity with the given data.',
25
+ },
26
+ update: {
27
+ sig: 'update(array $reqdata, ?array $ctrl = null): array',
28
+ returns: 'array [$result, $err]',
29
+ desc: 'Update an existing entity. The data must include the entity `id`.',
30
+ },
31
+ remove: {
32
+ sig: 'remove(array $reqmatch, ?array $ctrl = null): array',
33
+ returns: 'array [$result, $err]',
34
+ desc: 'Remove the entity matching the given criteria.',
35
+ },
36
+ }
37
+
38
+
39
+ const ReadmeRef = cmp(function ReadmeRef(props: any) {
40
+ const { target } = props
41
+ const { model } = props.ctx$
42
+
43
+ const entity = getModelPath(model, `main.${KIT}.entity`)
44
+ const feature = getModelPath(model, `main.${KIT}.feature`)
45
+
46
+ const publishedEntities = each(entity).filter((e: any) => e.active !== false)
47
+
48
+
49
+ File({ name: 'REFERENCE.md' }, () => {
50
+
51
+ Content(`# ${model.Name} ${target.title} SDK Reference
52
+
53
+ Complete API reference for the ${model.Name} ${target.title} SDK.
54
+
55
+
56
+ ## ${model.Name}SDK
57
+
58
+ ### Constructor
59
+
60
+ `)
61
+
62
+ Content(`\`\`\`php
63
+ require_once __DIR__ . '/${model.name}_sdk.php';
64
+
65
+ $client = new ${model.const.Name}SDK($options);
66
+ \`\`\`
67
+
68
+ Create a new SDK client instance.
69
+
70
+ **Parameters:**
71
+
72
+ | Name | Type | Description |
73
+ | --- | --- | --- |
74
+ | \`$options\` | \`array\` | SDK configuration options. |
75
+ | \`$options["apikey"]\` | \`string\` | API key for authentication. |
76
+ | \`$options["base"]\` | \`string\` | Base URL for API requests. |
77
+ | \`$options["prefix"]\` | \`string\` | URL prefix appended after base. |
78
+ | \`$options["suffix"]\` | \`string\` | URL suffix appended after path. |
79
+ | \`$options["headers"]\` | \`array\` | Custom headers for all requests. |
80
+ | \`$options["feature"]\` | \`array\` | Feature configuration. |
81
+ | \`$options["system"]\` | \`array\` | System overrides (e.g. custom fetch). |
82
+
83
+ `)
84
+
85
+
86
+ Content(`
87
+ ### Static Methods
88
+
89
+ `)
90
+
91
+ Content(`#### \`${model.const.Name}SDK::test($testopts = null, $sdkopts = null)\`
92
+
93
+ Create a test client with mock features active. Both arguments may be \`null\`.
94
+
95
+ \`\`\`php
96
+ $client = ${model.const.Name}SDK::test();
97
+ \`\`\`
98
+
99
+ `)
100
+
101
+
102
+ Content(`
103
+ ### Instance Methods
104
+
105
+ `)
106
+
107
+
108
+ // Entity factory methods
109
+ publishedEntities.map((ent: any) => {
110
+ Content(`#### \`${ent.Name}($data = null)\`
111
+
112
+ Create a new \`${ent.Name}Entity\` instance. Pass \`null\` for no initial data.
113
+
114
+ `)
115
+ })
116
+
117
+
118
+ Content(`#### \`optionsMap(): array\`
119
+
120
+ Return a deep copy of the current SDK options.
121
+
122
+ #### \`getUtility(): ProjectNameUtility\`
123
+
124
+ Return a copy of the SDK utility object.
125
+
126
+ #### \`direct(array $fetchargs = []): array\`
127
+
128
+ Make a direct HTTP request to any API endpoint. Returns \`[$result, $err]\`.
129
+
130
+ **Parameters:**
131
+
132
+ | Name | Type | Description |
133
+ | --- | --- | --- |
134
+ | \`$fetchargs["path"]\` | \`string\` | URL path with optional \`{param}\` placeholders. |
135
+ | \`$fetchargs["method"]\` | \`string\` | HTTP method (default: \`"GET"\`). |
136
+ | \`$fetchargs["params"]\` | \`array\` | Path parameter values for \`{param}\` substitution. |
137
+ | \`$fetchargs["query"]\` | \`array\` | Query string parameters. |
138
+ | \`$fetchargs["headers"]\` | \`array\` | Request headers (merged with defaults). |
139
+ | \`$fetchargs["body"]\` | \`mixed\` | Request body (arrays are JSON-serialized). |
140
+ | \`$fetchargs["ctrl"]\` | \`array\` | Control options. |
141
+
142
+ **Returns:** \`array [$result, $err]\`
143
+
144
+ #### \`prepare(array $fetchargs = []): array\`
145
+
146
+ Prepare a fetch definition without sending the request. Returns \`[$fetchdef, $err]\`.
147
+
148
+ `)
149
+
150
+
151
+ // Entity reference sections
152
+ publishedEntities.map((ent: any) => {
153
+ const opnames = Object.keys(ent.op || {})
154
+ const fields = ent.fields || []
155
+
156
+ Content(`
157
+ ---
158
+
159
+ ## ${ent.Name}Entity
160
+
161
+ `)
162
+
163
+ if (ent.short) {
164
+ Content(`${ent.short}
165
+
166
+ `)
167
+ }
168
+
169
+ Content(`\`\`\`php
170
+ $${ent.name} = $client->${ent.Name}();
171
+ \`\`\`
172
+
173
+ `)
174
+
175
+
176
+ // Field schema
177
+ if (fields.length > 0) {
178
+ Content(`### Fields
179
+
180
+ | Field | Type | Required | Description |
181
+ | --- | --- | --- | --- |
182
+ `)
183
+ each(fields, (field: any) => {
184
+ const req = field.req ? 'Yes' : 'No'
185
+ const desc = field.short || ''
186
+ Content(`| \`${field.name}\` | \`${field.type || 'any'}\` | ${req} | ${desc} |
187
+ `)
188
+ })
189
+
190
+ Content(`
191
+ `)
192
+
193
+ // Field operations breakdown
194
+ const hasFieldOps = fields.some((f: any) => f.op && Object.keys(f.op).length > 0)
195
+ if (hasFieldOps) {
196
+ Content(`### Field Usage by Operation
197
+
198
+ | Field | load | list | create | update | remove |
199
+ | --- | --- | --- | --- | --- | --- |
200
+ `)
201
+ each(fields, (field: any) => {
202
+ const fops = field.op || {}
203
+ const cols = ['load', 'list', 'create', 'update', 'remove'].map((op: string) => {
204
+ if (!opnames.includes(op)) return '-'
205
+ const fop = fops[op]
206
+ if (null == fop) return '-'
207
+ if (fop.active === false) return '-'
208
+ return 'Yes'
209
+ })
210
+ Content(`| \`${field.name}\` | ${cols.join(' | ')} |
211
+ `)
212
+ })
213
+
214
+ Content(`
215
+ `)
216
+ }
217
+ }
218
+
219
+
220
+ // Operation details
221
+ if (opnames.length > 0) {
222
+ Content(`### Operations
223
+
224
+ `)
225
+
226
+ opnames.map((opname: string) => {
227
+ const info = OP_SIGNATURES[opname]
228
+ if (!info) return
229
+
230
+ Content(`#### \`${info.sig}\`
231
+
232
+ ${info.desc}
233
+
234
+ `)
235
+
236
+ // Show example
237
+ if ('load' === opname || 'remove' === opname) {
238
+ Content(`\`\`\`php
239
+ [$result, $err] = $client->${ent.Name}()->${opname}(["id" => "${ent.name}_id"]);
240
+ \`\`\`
241
+
242
+ `)
243
+ }
244
+ else if ('list' === opname) {
245
+ Content(`\`\`\`php
246
+ [$results, $err] = $client->${ent.Name}()->list([]);
247
+ \`\`\`
248
+
249
+ `)
250
+ }
251
+ else if ('create' === opname) {
252
+ Content(`\`\`\`php
253
+ [$result, $err] = $client->${ent.Name}()->create([
254
+ `)
255
+ each(fields, (field: any) => {
256
+ if ('id' !== field.name && field.req) {
257
+ Content(` "${field.name}" => /* ${field.type || 'value'} */,
258
+ `)
259
+ }
260
+ })
261
+ Content(`]);
262
+ \`\`\`
263
+
264
+ `)
265
+ }
266
+ else if ('update' === opname) {
267
+ Content(`\`\`\`php
268
+ [$result, $err] = $client->${ent.Name}()->update([
269
+ "id" => "${ent.name}_id",
270
+ // Fields to update
271
+ ]);
272
+ \`\`\`
273
+
274
+ `)
275
+ }
276
+ })
277
+ }
278
+
279
+
280
+ // Common methods
281
+ Content(`### Common Methods
282
+
283
+ #### \`dataGet(): array\`
284
+
285
+ Get the entity data. Returns a copy of the current data.
286
+
287
+ #### \`dataSet($data): void\`
288
+
289
+ Set the entity data.
290
+
291
+ #### \`matchGet(): array\`
292
+
293
+ Get the entity match criteria.
294
+
295
+ #### \`matchSet($match): void\`
296
+
297
+ Set the entity match criteria.
298
+
299
+ #### \`make(): ${ent.Name}Entity\`
300
+
301
+ Create a new \`${ent.Name}Entity\` instance with the same client and
302
+ options.
303
+
304
+ #### \`getName(): string\`
305
+
306
+ Return the entity name.
307
+
308
+ `)
309
+ })
310
+
311
+
312
+ // Features section
313
+ const activeFeatures = each(feature).filter((f: any) => f.active)
314
+ if (activeFeatures.length > 0) {
315
+ Content(`
316
+ ---
317
+
318
+ ## Features
319
+
320
+ | Feature | Version | Description |
321
+ | --- | --- | --- |
322
+ `)
323
+
324
+ activeFeatures.map((f: any) => {
325
+ Content(`| \`${f.name}\` | ${f.version || '0.0.1'} | ${f.title || ''} |
326
+ `)
327
+ })
328
+
329
+ Content(`
330
+
331
+ Features are activated via the \`feature\` option:
332
+
333
+ `)
334
+
335
+ Content(`\`\`\`php
336
+ $client = new ${model.const.Name}SDK([
337
+ "feature" => [
338
+ `)
339
+ activeFeatures.map((f: any) => {
340
+ Content(` "${f.name}" => ["active" => true],
341
+ `)
342
+ })
343
+ Content(` ],
344
+ ]);
345
+ \`\`\`
346
+
347
+ `)
348
+ }
349
+
350
+ })
351
+ })
352
+
353
+
354
+
355
+
356
+ export {
357
+ ReadmeRef
358
+ }
@@ -1,5 +1,5 @@
1
1
 
2
- import { cmp, Content } from '@voxgig/sdkgen'
2
+ import { cmp, Content, isAuthActive } from '@voxgig/sdkgen'
3
3
 
4
4
  import {
5
5
  KIT,
@@ -15,13 +15,15 @@ const ReadmeTopQuick = cmp(function ReadmeTopQuick(props: any) {
15
15
 
16
16
  const exampleEntity = Object.values(entity).find((e: any) => e.active !== false) as any
17
17
 
18
+ const apikeyArg = isAuthActive(model)
19
+ ? `\n "apikey" => getenv("${model.NAME}_APIKEY"),\n`
20
+ : ''
21
+
18
22
  Content(`\`\`\`php
19
23
  <?php
20
24
  require_once '${model.const.Name.toLowerCase()}_sdk.php';
21
25
 
22
- $client = new ${model.const.Name}SDK([
23
- "apikey" => getenv("${model.NAME}_APIKEY"),
24
- ]);
26
+ $client = new ${model.const.Name}SDK([${apikeyArg}]);
25
27
 
26
28
  `)
27
29
 
@@ -1,5 +1,8 @@
1
1
 
2
2
  import {
3
+ Model,
4
+ ModelEntity,
5
+ nom,
3
6
  depluralize,
4
7
  } from '@voxgig/apidef'
5
8
 
@@ -8,6 +11,7 @@ import {
8
11
  File,
9
12
  cmp,
10
13
  snakify,
14
+ isAuthActive,
11
15
  } from '@voxgig/sdkgen'
12
16
 
13
17
 
@@ -51,12 +55,20 @@ function normalizePathParams(
51
55
 
52
56
  const TestDirect = cmp(function TestDirect(props: any) {
53
57
  const ctx$ = props.ctx$
54
- const model = ctx$.model
58
+ const model: Model = ctx$.model
55
59
 
56
60
  const target = props.target
57
- const entity = props.entity
61
+ const entity: ModelEntity = props.entity
58
62
 
59
- const PROJECTNAME = model.Name.toUpperCase().replace(/[^A-Z_]/g, '_')
63
+ const PROJECTNAME = nom(model, 'Name').toUpperCase().replace(/[^A-Z_]/g, '_')
64
+
65
+ const authActive = isAuthActive(model)
66
+ const apikeyEnvEntry = authActive
67
+ ? `\n "${PROJECTNAME}_APIKEY" => "NONE",`
68
+ : ''
69
+ const apikeyLiveField = authActive
70
+ ? `\n "apikey" => $env["${PROJECTNAME}_APIKEY"],`
71
+ : ''
60
72
 
61
73
  const opnames = Object.keys(entity.op)
62
74
  const hasLoad = opnames.includes('load')
@@ -77,7 +89,7 @@ const TestDirect = cmp(function TestDirect(props: any) {
77
89
  const listPath = listPoint ? normalizePathParams(listPoint.parts || [], listPoint?.args?.params || [], listPoint?.rename?.param) : ''
78
90
  const listParams = listPoint?.args?.params || []
79
91
 
80
- const entidEnvVar = `${PROJECTNAME}_TEST_${entity.Name.toUpperCase().replace(/[^A-Z_]/g, '_')}_ENTID`
92
+ const entidEnvVar = `${PROJECTNAME}_TEST_${nom(entity, 'NAME').replace(/[^A-Z_]/g, '_')}_ENTID`
81
93
 
82
94
  File({ name: entity.Name + 'DirectTest.' + target.ext }, () => {
83
95
 
@@ -211,15 +223,13 @@ function ${entity.name}_direct_setup($mockres)
211
223
 
212
224
  $env = Runner::env_override([
213
225
  "${entidEnvVar}" => [],
214
- "${PROJECTNAME}_TEST_LIVE" => "FALSE",
215
- "${PROJECTNAME}_APIKEY" => "NONE",
226
+ "${PROJECTNAME}_TEST_LIVE" => "FALSE",${apikeyEnvEntry}
216
227
  ]);
217
228
 
218
229
  $live = $env["${PROJECTNAME}_TEST_LIVE"] === "TRUE";
219
230
 
220
231
  if ($live) {
221
- $merged_opts = [
222
- "apikey" => $env["${PROJECTNAME}_APIKEY"],
232
+ $merged_opts = [${apikeyLiveField}
223
233
  ];
224
234
  $client = new ${model.const.Name}SDK($merged_opts);
225
235
  return [