yellowgrid-api-ts 3.2.66-dev.0 → 3.2.68-dev.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.
@@ -1,5 +1,6 @@
1
1
  .gitignore
2
2
  .npmignore
3
+ .openapi-generator-ignore
3
4
  README.md
4
5
  api.ts
5
6
  base.ts
@@ -197,6 +198,7 @@ docs/StockProductSummaryModel.md
197
198
  docs/StockTransactionsEntity.md
198
199
  docs/SupplierEntity.md
199
200
  docs/SupplierItemEntity.md
201
+ docs/SupplierItemModel.md
200
202
  docs/SupplierModel.md
201
203
  docs/SystemApi.md
202
204
  docs/TcxBackupEntity.md
package/README.md CHANGED
@@ -422,6 +422,7 @@ Class | Method | HTTP request | Description
422
422
  - [StockTransactionsEntity](docs/StockTransactionsEntity.md)
423
423
  - [SupplierEntity](docs/SupplierEntity.md)
424
424
  - [SupplierItemEntity](docs/SupplierItemEntity.md)
425
+ - [SupplierItemModel](docs/SupplierItemModel.md)
425
426
  - [SupplierModel](docs/SupplierModel.md)
426
427
  - [TcxBackupEntity](docs/TcxBackupEntity.md)
427
428
  - [TcxBackupModel](docs/TcxBackupModel.md)
package/api.ts CHANGED
@@ -4760,6 +4760,12 @@ export interface OrderItemDTO {
4760
4760
  * @memberof OrderItemDTO
4761
4761
  */
4762
4762
  'suppliers'?: Array<SupplierModel>;
4763
+ /**
4764
+ * Supplier Items
4765
+ * @type {Array<SupplierItemModel>}
4766
+ * @memberof OrderItemDTO
4767
+ */
4768
+ 'supplierItems'?: Array<SupplierItemModel>;
4763
4769
  /**
4764
4770
  * Allocated
4765
4771
  * @type {number}
@@ -6435,6 +6441,12 @@ export interface ShipmentAddressEntity {
6435
6441
  * @interface ShipmentDTO
6436
6442
  */
6437
6443
  export interface ShipmentDTO {
6444
+ /**
6445
+ * ID
6446
+ * @type {number}
6447
+ * @memberof ShipmentDTO
6448
+ */
6449
+ 'id'?: number | null;
6438
6450
  /**
6439
6451
  * Courier
6440
6452
  * @type {string}
@@ -8504,6 +8516,61 @@ export interface SupplierItemEntity {
8504
8516
  */
8505
8517
  'supplierSku'?: string;
8506
8518
  }
8519
+ /**
8520
+ * Supplier Item
8521
+ * @export
8522
+ * @interface SupplierItemModel
8523
+ */
8524
+ export interface SupplierItemModel {
8525
+ /**
8526
+ * id
8527
+ * @type {number}
8528
+ * @memberof SupplierItemModel
8529
+ */
8530
+ 'id'?: number;
8531
+ /**
8532
+ * supplierId
8533
+ * @type {number}
8534
+ * @memberof SupplierItemModel
8535
+ */
8536
+ 'supplierId'?: number;
8537
+ /**
8538
+ * sku
8539
+ * @type {string}
8540
+ * @memberof SupplierItemModel
8541
+ */
8542
+ 'sku'?: string;
8543
+ /**
8544
+ * title
8545
+ * @type {string}
8546
+ * @memberof SupplierItemModel
8547
+ */
8548
+ 'title'?: string;
8549
+ /**
8550
+ * itemOptions
8551
+ * @type {string}
8552
+ * @memberof SupplierItemModel
8553
+ */
8554
+ 'itemOptions'?: string;
8555
+ /**
8556
+ * itemPrice
8557
+ * @type {number}
8558
+ * @memberof SupplierItemModel
8559
+ */
8560
+ 'itemPrice'?: number;
8561
+ /**
8562
+ * itemType
8563
+ * @type {number}
8564
+ * @memberof SupplierItemModel
8565
+ */
8566
+ 'itemType'?: number;
8567
+ /**
8568
+ * supplierSku
8569
+ * @type {string}
8570
+ * @memberof SupplierItemModel
8571
+ */
8572
+ 'supplierSku'?: string;
8573
+ }
8507
8574
  /**
8508
8575
  * Supplier
8509
8576
  * @export
@@ -19335,7 +19402,7 @@ export const OrdersApiFp = function(configuration?: Configuration) {
19335
19402
  * @param {*} [options] Override http request option.
19336
19403
  * @throws {RequiredError}
19337
19404
  */
19338
- async putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
19405
+ async putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BatchDTO>>> {
19339
19406
  const localVarAxiosArgs = await localVarAxiosParamCreator.putAllocateItems(id, supplierId, putAllocateItemsRequest, options);
19340
19407
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
19341
19408
  const localVarOperationServerBasePath = operationServerMap['OrdersApi.putAllocateItems']?.[localVarOperationServerIndex]?.url;
@@ -19607,7 +19674,7 @@ export const OrdersApiFactory = function (configuration?: Configuration, basePat
19607
19674
  * @param {*} [options] Override http request option.
19608
19675
  * @throws {RequiredError}
19609
19676
  */
19610
- putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void> {
19677
+ putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<BatchDTO>> {
19611
19678
  return localVarFp.putAllocateItems(id, supplierId, putAllocateItemsRequest, options).then((request) => request(axios, basePath));
19612
19679
  },
19613
19680
  /**
package/dist/api.d.ts CHANGED
@@ -4725,6 +4725,12 @@ export interface OrderItemDTO {
4725
4725
  * @memberof OrderItemDTO
4726
4726
  */
4727
4727
  'suppliers'?: Array<SupplierModel>;
4728
+ /**
4729
+ * Supplier Items
4730
+ * @type {Array<SupplierItemModel>}
4731
+ * @memberof OrderItemDTO
4732
+ */
4733
+ 'supplierItems'?: Array<SupplierItemModel>;
4728
4734
  /**
4729
4735
  * Allocated
4730
4736
  * @type {number}
@@ -6387,6 +6393,12 @@ export interface ShipmentAddressEntity {
6387
6393
  * @interface ShipmentDTO
6388
6394
  */
6389
6395
  export interface ShipmentDTO {
6396
+ /**
6397
+ * ID
6398
+ * @type {number}
6399
+ * @memberof ShipmentDTO
6400
+ */
6401
+ 'id'?: number | null;
6390
6402
  /**
6391
6403
  * Courier
6392
6404
  * @type {string}
@@ -8424,6 +8436,61 @@ export interface SupplierItemEntity {
8424
8436
  */
8425
8437
  'supplierSku'?: string;
8426
8438
  }
8439
+ /**
8440
+ * Supplier Item
8441
+ * @export
8442
+ * @interface SupplierItemModel
8443
+ */
8444
+ export interface SupplierItemModel {
8445
+ /**
8446
+ * id
8447
+ * @type {number}
8448
+ * @memberof SupplierItemModel
8449
+ */
8450
+ 'id'?: number;
8451
+ /**
8452
+ * supplierId
8453
+ * @type {number}
8454
+ * @memberof SupplierItemModel
8455
+ */
8456
+ 'supplierId'?: number;
8457
+ /**
8458
+ * sku
8459
+ * @type {string}
8460
+ * @memberof SupplierItemModel
8461
+ */
8462
+ 'sku'?: string;
8463
+ /**
8464
+ * title
8465
+ * @type {string}
8466
+ * @memberof SupplierItemModel
8467
+ */
8468
+ 'title'?: string;
8469
+ /**
8470
+ * itemOptions
8471
+ * @type {string}
8472
+ * @memberof SupplierItemModel
8473
+ */
8474
+ 'itemOptions'?: string;
8475
+ /**
8476
+ * itemPrice
8477
+ * @type {number}
8478
+ * @memberof SupplierItemModel
8479
+ */
8480
+ 'itemPrice'?: number;
8481
+ /**
8482
+ * itemType
8483
+ * @type {number}
8484
+ * @memberof SupplierItemModel
8485
+ */
8486
+ 'itemType'?: number;
8487
+ /**
8488
+ * supplierSku
8489
+ * @type {string}
8490
+ * @memberof SupplierItemModel
8491
+ */
8492
+ 'supplierSku'?: string;
8493
+ }
8427
8494
  /**
8428
8495
  * Supplier
8429
8496
  * @export
@@ -14857,7 +14924,7 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
14857
14924
  * @param {*} [options] Override http request option.
14858
14925
  * @throws {RequiredError}
14859
14926
  */
14860
- putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
14927
+ putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BatchDTO>>>;
14861
14928
  /**
14862
14929
  * Update Shipment (Admin)
14863
14930
  * @summary Update Shipment (Admin)
@@ -15069,7 +15136,7 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
15069
15136
  * @param {*} [options] Override http request option.
15070
15137
  * @throws {RequiredError}
15071
15138
  */
15072
- putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15139
+ putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<BatchDTO>>;
15073
15140
  /**
15074
15141
  * Update Shipment (Admin)
15075
15142
  * @summary Update Shipment (Admin)
@@ -15302,7 +15369,7 @@ export declare class OrdersApi extends BaseAPI {
15302
15369
  * @throws {RequiredError}
15303
15370
  * @memberof OrdersApi
15304
15371
  */
15305
- putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
15372
+ putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchDTO[], any, {}>>;
15306
15373
  /**
15307
15374
  * Update Shipment (Admin)
15308
15375
  * @summary Update Shipment (Admin)
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
22
22
  **readonly** | **boolean** | Readonly | [optional] [default to undefined]
23
23
  **tcxSalesCode** | **string** | 3CX Sales Code | [optional] [default to undefined]
24
24
  **suppliers** | [**Array&lt;SupplierModel&gt;**](SupplierModel.md) | Suppliers | [optional] [default to undefined]
25
+ **supplierItems** | [**Array&lt;SupplierItemModel&gt;**](SupplierItemModel.md) | Supplier Items | [optional] [default to undefined]
25
26
  **allocated** | **number** | Allocated | [optional] [default to undefined]
26
27
 
27
28
  ## Example
@@ -46,6 +47,7 @@ const instance: OrderItemDTO = {
46
47
  readonly,
47
48
  tcxSalesCode,
48
49
  suppliers,
50
+ supplierItems,
49
51
  allocated,
50
52
  };
51
53
  ```
package/docs/OrdersApi.md CHANGED
@@ -1073,7 +1073,7 @@ No authorization required
1073
1073
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
1074
1074
 
1075
1075
  # **putAllocateItems**
1076
- > putAllocateItems()
1076
+ > Array<BatchDTO> putAllocateItems()
1077
1077
 
1078
1078
  Allocate Items To Supplier
1079
1079
 
@@ -1111,7 +1111,7 @@ const { status, data } = await apiInstance.putAllocateItems(
1111
1111
 
1112
1112
  ### Return type
1113
1113
 
1114
- void (empty response body)
1114
+ **Array<BatchDTO>**
1115
1115
 
1116
1116
  ### Authorization
1117
1117
 
@@ -1120,13 +1120,13 @@ No authorization required
1120
1120
  ### HTTP request headers
1121
1121
 
1122
1122
  - **Content-Type**: application/json
1123
- - **Accept**: Not defined
1123
+ - **Accept**: application/json
1124
1124
 
1125
1125
 
1126
1126
  ### HTTP response details
1127
1127
  | Status code | Description | Response headers |
1128
1128
  |-------------|-------------|------------------|
1129
- |**200** | No Response | - |
1129
+ |**200** | Order Batches | - |
1130
1130
  |**400** | Bad Request | - |
1131
1131
  |**401** | Unauthorised | - |
1132
1132
  |**403** | Access Denied | - |
@@ -6,6 +6,7 @@ Shipment
6
6
 
7
7
  Name | Type | Description | Notes
8
8
  ------------ | ------------- | ------------- | -------------
9
+ **id** | **number** | ID | [optional] [default to undefined]
9
10
  **courier** | **string** | Courier | [optional] [default to undefined]
10
11
  **reference** | **string** | Courier Reference | [optional] [default to undefined]
11
12
  **requestedDate** | **string** | Date Time | [optional] [default to undefined]
@@ -19,6 +20,7 @@ Name | Type | Description | Notes
19
20
  import { ShipmentDTO } from 'yellowgrid-api-ts';
20
21
 
21
22
  const instance: ShipmentDTO = {
23
+ id,
22
24
  courier,
23
25
  reference,
24
26
  requestedDate,
@@ -0,0 +1,35 @@
1
+ # SupplierItemModel
2
+
3
+ Supplier Item
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **number** | id | [optional] [default to undefined]
10
+ **supplierId** | **number** | supplierId | [optional] [default to undefined]
11
+ **sku** | **string** | sku | [optional] [default to undefined]
12
+ **title** | **string** | title | [optional] [default to undefined]
13
+ **itemOptions** | **string** | itemOptions | [optional] [default to undefined]
14
+ **itemPrice** | **number** | itemPrice | [optional] [default to undefined]
15
+ **itemType** | **number** | itemType | [optional] [default to undefined]
16
+ **supplierSku** | **string** | supplierSku | [optional] [default to undefined]
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import { SupplierItemModel } from 'yellowgrid-api-ts';
22
+
23
+ const instance: SupplierItemModel = {
24
+ id,
25
+ supplierId,
26
+ sku,
27
+ title,
28
+ itemOptions,
29
+ itemPrice,
30
+ itemType,
31
+ supplierSku,
32
+ };
33
+ ```
34
+
35
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -18,7 +18,7 @@
18
18
  # to set the Java Heap base and to place the Java Heap above 32GB virtual address.
19
19
  # This output file may be truncated or incomplete.
20
20
  #
21
- # Out of Memory Error (os_windows.cpp:3703), pid=58424, tid=22296
21
+ # Out of Memory Error (os_windows.cpp:3703), pid=16044, tid=29648
22
22
  #
23
23
  # JRE version: (23.0.1+11) (build )
24
24
  # Java VM: OpenJDK 64-Bit Server VM (23.0.1+11-39, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
@@ -29,14 +29,14 @@
29
29
 
30
30
  Command Line: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar completion
31
31
 
32
- Host: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz, 12 cores, 31G, Windows 11 , 64 bit Build 26100 (10.0.26100.7019)
33
- Time: Tue Nov 25 14:50:16 2025 GMT Standard Time elapsed time: 0.102063 seconds (0d 0h 0m 0s)
32
+ Host: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz, 12 cores, 31G, Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
33
+ Time: Thu Feb 26 12:47:25 2026 GMT Standard Time elapsed time: 2.128274 seconds (0d 0h 0m 2s)
34
34
 
35
35
  --------------- T H R E A D ---------------
36
36
 
37
- Current thread (0x000001ea64abeeb0): JavaThread "Unknown thread" [_thread_in_vm, id=22296, stack(0x000000ae09100000,0x000000ae09200000) (1024K)]
37
+ Current thread (0x000002212c2b14f0): JavaThread "Unknown thread" [_thread_in_vm, id=29648, stack(0x00000067c7100000,0x00000067c7200000) (1024K)]
38
38
 
39
- Stack: [0x000000ae09100000,0x000000ae09200000]
39
+ Stack: [0x00000067c7100000,0x00000067c7200000]
40
40
  Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
41
41
  V [jvm.dll+0x6e08b9] (no source info available)
42
42
  V [jvm.dll+0x87dc83] (no source info available)
@@ -59,7 +59,7 @@ V [jvm.dll+0x456bd1] (no source info available)
59
59
  C [jli.dll+0x52a3] (no source info available)
60
60
  C [ucrtbase.dll+0x37b0] (no source info available)
61
61
  C [KERNEL32.DLL+0x2e8d7] (no source info available)
62
- C [ntdll.dll+0x8c53c] (no source info available)
62
+ C [ntdll.dll+0x8c40c] (no source info available)
63
63
 
64
64
  Lock stack of current Java thread (top to bottom):
65
65
 
@@ -67,22 +67,22 @@ Lock stack of current Java thread (top to bottom):
67
67
  --------------- P R O C E S S ---------------
68
68
 
69
69
  Threads class SMR info:
70
- _java_thread_list=0x00007fff956f3618, length=0, elements={
70
+ _java_thread_list=0x00007ffe9c7f3618, length=0, elements={
71
71
  }
72
72
 
73
73
  Java Threads: ( => current thread )
74
74
  Total: 0
75
75
 
76
76
  Other Threads:
77
- 0x000001ea67d4e700 WorkerThread "GC Thread#0" [id=55208, stack(0x000000ae09200000,0x000000ae09300000) (1024K)]
78
- 0x000001ea7f9a7b90 ConcurrentGCThread "G1 Main Marker" [id=59764, stack(0x000000ae09300000,0x000000ae09400000) (1024K)]
79
- 0x000001ea7f9aa490 WorkerThread "G1 Conc#0" [id=46136, stack(0x000000ae09400000,0x000000ae09500000) (1024K)]
77
+ 0x00000221481608a0 WorkerThread "GC Thread#0" [id=48808, stack(0x00000067c7200000,0x00000067c7300000) (1024K)]
78
+ 0x00000221303f7780 ConcurrentGCThread "G1 Main Marker" [id=47272, stack(0x00000067c7300000,0x00000067c7400000) (1024K)]
79
+ 0x00000221303f8290 WorkerThread "G1 Conc#0" [id=51084, stack(0x00000067c7400000,0x00000067c7500000) (1024K)]
80
80
 
81
- [error occurred during error reporting (printing all threads), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007fff94e3bfba]
81
+ [error occurred during error reporting (printing all threads), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe9bf3bfba]
82
82
  VM state: not at safepoint (not fully initialized)
83
83
 
84
84
  VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
85
- [0x00007fff95773a10] Heap_lock - owner thread: 0x000001ea64abeeb0
85
+ [0x00007ffe9c873a10] Heap_lock - owner thread: 0x000002212c2b14f0
86
86
 
87
87
  Heap address: 0x0000000602000000, size: 8160 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
88
88
 
@@ -97,12 +97,12 @@ Heap:
97
97
  garbage-first heap total reserved 8355840K, committed 0K, used 0K [0x0000000602000000, 0x0000000800000000)
98
98
  region size 4096K, 0 young (0K), 0 survivors (0K)
99
99
 
100
- [error occurred during error reporting (printing heap information), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007fff9523c3c9]
100
+ [error occurred during error reporting (printing heap information), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe9c33c3c9]
101
101
  GC Heap History (0 events):
102
102
  No events
103
103
 
104
104
  Dll operation events (1 events):
105
- Event: 0.088 Loaded shared library C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
105
+ Event: 0.102 Loaded shared library C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
106
106
 
107
107
  Deoptimization events (0 events):
108
108
  No events
@@ -133,53 +133,55 @@ No events
133
133
 
134
134
 
135
135
  Dynamic libraries:
136
- 0x00007ff75c600000 - 0x00007ff75c60e000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.exe
137
- 0x00007ff881980000 - 0x00007ff881be8000 C:\WINDOWS\SYSTEM32\ntdll.dll
138
- 0x00007ff8801b0000 - 0x00007ff880279000 C:\WINDOWS\System32\KERNEL32.DLL
139
- 0x00007ff87f1e0000 - 0x00007ff87f5d8000 C:\WINDOWS\System32\KERNELBASE.dll
140
- 0x00007ff87ed00000 - 0x00007ff87ee4b000 C:\WINDOWS\System32\ucrtbase.dll
141
- 0x00007ff879210000 - 0x00007ff87922b000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\VCRUNTIME140.dll
142
- 0x00007ff879140000 - 0x00007ff879157000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jli.dll
143
- 0x00007ff880600000 - 0x00007ff8807c7000 C:\WINDOWS\System32\USER32.dll
144
- 0x00007ff87ef80000 - 0x00007ff87efa7000 C:\WINDOWS\System32\win32u.dll
145
- 0x00007ff869300000 - 0x00007ff869594000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7019_none_3e06ffa0e335b8a8\COMCTL32.dll
146
- 0x00007ff880980000 - 0x00007ff8809ab000 C:\WINDOWS\System32\GDI32.dll
147
- 0x00007ff880100000 - 0x00007ff8801a9000 C:\WINDOWS\System32\msvcrt.dll
148
- 0x00007ff87ee50000 - 0x00007ff87ef7c000 C:\WINDOWS\System32\gdi32full.dll
149
- 0x00007ff87f130000 - 0x00007ff87f1d3000 C:\WINDOWS\System32\msvcp_win.dll
150
- 0x00007ff8807d0000 - 0x00007ff880801000 C:\WINDOWS\System32\IMM32.DLL
151
- 0x00007ff8795f0000 - 0x00007ff87974e000 C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409\TmUmEvt64.dll
152
- 0x00007ff8805f0000 - 0x00007ff8805f8000 C:\WINDOWS\System32\PSAPI.DLL
153
- 0x00007ff87fca0000 - 0x00007ff87fd54000 C:\WINDOWS\System32\ADVAPI32.dll
154
- 0x00007ff880a10000 - 0x00007ff880ab6000 C:\WINDOWS\System32\sechost.dll
155
- 0x00007ff87fb80000 - 0x00007ff87fc98000 C:\WINDOWS\System32\RPCRT4.dll
156
- 0x00000000620e0000 - 0x0000000062205000 C:\Windows\system32\tmumh\20019\TmMon\2.9.0.1217\tmmon64.dll
157
- 0x00007ff877af0000 - 0x00007ff877afc000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\vcruntime140_1.dll
158
- 0x00007ff80fe50000 - 0x00007ff80fede000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\msvcp140.dll
159
- 0x00007fff94b00000 - 0x00007fff9584f000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\server\jvm.dll
160
- 0x00007ff880fc0000 - 0x00007ff881034000 C:\WINDOWS\System32\WS2_32.dll
161
- 0x00007ff87e930000 - 0x00007ff87e98e000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
162
- 0x00007ff86b2a0000 - 0x00007ff86b2d5000 C:\WINDOWS\SYSTEM32\WINMM.dll
163
- 0x00007ff86f9b0000 - 0x00007ff86f9bb000 C:\WINDOWS\SYSTEM32\VERSION.dll
164
- 0x00007ff87e910000 - 0x00007ff87e924000 C:\WINDOWS\SYSTEM32\UMPDC.dll
165
- 0x000001ea66670000 - 0x000001ea66673000 C:\WINDOWS\system32\Sfc.dll
166
- 0x00007ff8541d0000 - 0x00007ff8541da000 C:\WINDOWS\SYSTEM32\sfc_os.DLL
167
- 0x00007ff87e750000 - 0x00007ff87e837000 C:\WINDOWS\SYSTEM32\ServicingCommon.dll
168
- 0x00007ff880ac0000 - 0x00007ff880f4a000 C:\WINDOWS\System32\SETUPAPI.dll
169
- 0x00007ff87d720000 - 0x00007ff87d73b000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
170
- 0x00007ff877ae0000 - 0x00007ff877aea000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jimage.dll
171
- 0x00007ff87bf80000 - 0x00007ff87c1c2000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
172
- 0x00007ff87f7b0000 - 0x00007ff87fb3b000 C:\WINDOWS\System32\combase.dll
173
- 0x00007ff8808a0000 - 0x00007ff880977000 C:\WINDOWS\System32\OLEAUT32.dll
174
- 0x00007ff860810000 - 0x00007ff86084c000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
175
- 0x00007ff87f670000 - 0x00007ff87f715000 C:\WINDOWS\System32\bcryptPrimitives.dll
176
- 0x00007ff8772f0000 - 0x00007ff87730e000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
177
- 0x00007ff881040000 - 0x00007ff8811d7000 C:\WINDOWS\System32\ole32.dll
178
- 0x00007ff8811e0000 - 0x00007ff88192f000 C:\WINDOWS\System32\SHELL32.dll
179
- 0x00007ff87eb90000 - 0x00007ff87ecfb000 C:\WINDOWS\System32\wintypes.dll
136
+ 0x00007ff7ea8c0000 - 0x00007ff7ea8ce000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.exe
137
+ 0x00007fff6d440000 - 0x00007fff6d6a8000 C:\WINDOWS\SYSTEM32\ntdll.dll
138
+ 0x00007fff6c6a0000 - 0x00007fff6c769000 C:\WINDOWS\System32\KERNEL32.DLL
139
+ 0x00007fff6ab40000 - 0x00007fff6af31000 C:\WINDOWS\System32\KERNELBASE.dll
140
+ 0x00007fff6b090000 - 0x00007fff6b1db000 C:\WINDOWS\System32\ucrtbase.dll
141
+ 0x00007fff53990000 - 0x00007fff539a7000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jli.dll
142
+ 0x00007fff55980000 - 0x00007fff5599b000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\VCRUNTIME140.dll
143
+ 0x00007fff6d0f0000 - 0x00007fff6d2b6000 C:\WINDOWS\System32\USER32.dll
144
+ 0x00007fff69f40000 - 0x00007fff69f67000 C:\WINDOWS\System32\win32u.dll
145
+ 0x00007fff6c770000 - 0x00007fff6c79b000 C:\WINDOWS\System32\GDI32.dll
146
+ 0x00007fff6aa10000 - 0x00007fff6ab3b000 C:\WINDOWS\System32\gdi32full.dll
147
+ 0x00007fff69d20000 - 0x00007fff69dc3000 C:\WINDOWS\System32\msvcp_win.dll
148
+ 0x00007fff5d810000 - 0x00007fff5daa3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7824_none_3e0870b2e3345462\COMCTL32.dll
149
+ 0x00007fff6bcb0000 - 0x00007fff6bd59000 C:\WINDOWS\System32\msvcrt.dll
150
+ 0x00007fff6d3c0000 - 0x00007fff6d3f1000 C:\WINDOWS\System32\IMM32.DLL
151
+ 0x00007fff61bb0000 - 0x00007fff61d0e000 C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409\TmUmEvt64.dll
152
+ 0x00007fff6b2e0000 - 0x00007fff6b2e8000 C:\WINDOWS\System32\PSAPI.DLL
153
+ 0x00007fff6c440000 - 0x00007fff6c4f4000 C:\WINDOWS\System32\ADVAPI32.dll
154
+ 0x00007fff6d2c0000 - 0x00007fff6d366000 C:\WINDOWS\System32\sechost.dll
155
+ 0x00007fff6ced0000 - 0x00007fff6cfe8000 C:\WINDOWS\System32\RPCRT4.dll
156
+ 0x0000000071440000 - 0x0000000071567000 C:\WINDOWS\system32\tmumh\20019\TmMon\2.9.0.1243\tmmon64.dll
157
+ 0x00007fff6cff0000 - 0x00007fff6d057000 C:\WINDOWS\System32\Shlwapi.dll
158
+ 0x00007fff6a1a0000 - 0x00007fff6aa03000 C:\WINDOWS\System32\Windows.Storage.dll
159
+ 0x00007fff6c7a0000 - 0x00007fff6cb26000 C:\WINDOWS\System32\combase.dll
160
+ 0x00007fff5ddb0000 - 0x00007fff5ddbc000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\vcruntime140_1.dll
161
+ 0x00007fff2d370000 - 0x00007fff2d3fe000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\msvcp140.dll
162
+ 0x00007ffe9bc00000 - 0x00007ffe9c94f000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\server\jvm.dll
163
+ 0x00007fff6b4d0000 - 0x00007fff6b544000 C:\WINDOWS\System32\WS2_32.dll
164
+ 0x00007fff69b80000 - 0x00007fff69bde000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
165
+ 0x00007fff5d7d0000 - 0x00007fff5d805000 C:\WINDOWS\SYSTEM32\WINMM.dll
166
+ 0x00007fff62590000 - 0x00007fff6259b000 C:\WINDOWS\SYSTEM32\VERSION.dll
167
+ 0x00007fff69b60000 - 0x00007fff69b74000 C:\WINDOWS\SYSTEM32\UMPDC.dll
168
+ 0x000002212c9c0000 - 0x000002212c9c3000 C:\WINDOWS\system32\Sfc.dll
169
+ 0x00007fff4a1c0000 - 0x00007fff4a1ca000 C:\WINDOWS\SYSTEM32\sfc_os.DLL
170
+ 0x00007fff69920000 - 0x00007fff69a1b000 C:\WINDOWS\SYSTEM32\ServicingCommon.dll
171
+ 0x00007fff6bd60000 - 0x00007fff6c1e9000 C:\WINDOWS\System32\SETUPAPI.dll
172
+ 0x00007fff68950000 - 0x00007fff6896b000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
173
+ 0x00007fff5dca0000 - 0x00007fff5dcaa000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jimage.dll
174
+ 0x00007fff67a20000 - 0x00007fff67c62000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
175
+ 0x00007fff6cc10000 - 0x00007fff6cce7000 C:\WINDOWS\System32\OLEAUT32.dll
176
+ 0x00007fff46870000 - 0x00007fff468ab000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
177
+ 0x00007fff6a0f0000 - 0x00007fff6a195000 C:\WINDOWS\System32\bcryptPrimitives.dll
178
+ 0x00007fff536b0000 - 0x00007fff536ce000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
179
+ 0x000002212fb20000 - 0x000002212fcb7000 C:\WINDOWS\System32\ole32.dll
180
+ 0x00007fff6b550000 - 0x00007fff6bca2000 C:\WINDOWS\System32\SHELL32.dll
181
+ 0x00007fff69dd0000 - 0x00007fff69f3a000 C:\WINDOWS\System32\wintypes.dll
180
182
 
181
183
  dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
182
- symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7019_none_3e06ffa0e335b8a8;C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409;C:\Windows\system32\tmumh\20019\TmMon\2.9.0.1217;C:\Program Files\OpenJDK\jdk-23.0.1\bin\server
184
+ symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7824_none_3e0870b2e3345462;C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409;C:\WINDOWS\system32\tmumh\20019\TmMon\2.9.0.1243;C:\Program Files\OpenJDK\jdk-23.0.1\bin\server
183
185
 
184
186
  VM Arguments:
185
187
  java_command: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar completion
@@ -214,7 +216,7 @@ Log output configuration:
214
216
 
215
217
  Environment Variables:
216
218
  JAVA_HOME=C:\Program Files\OpenJDK\jdk-23.0.1
217
- PATH=C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\ts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\node_modules\.bin;C:\Users\adam.albison\node_modules\.bin;C:\Users\node_modules\.bin;C:\node_modules\.bin;C:\Users\adam.albison\AppData\Roaming\npm\node_modules\npm\node_modules\@npmcli\run-script\lib\node-gyp-bin;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\dotnet\;C:\Program Files\Docker\Docker\resources\bin;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;%SYSTEMROOT%\System32\OpenSSH\;C:\Users\adam.albison\scoop\apps\openjdk\current\bin;C:\Users\adam.albison\AppData\Local\Microsoft\WindowsApps;C:\Users\adam.albison\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\adam.albison\.bun\bin;C:\xampp\php;C:\Users\adam.albison\AppData\Local\ComposerSetup\bin;C:\Users\adam.albison\AppData\Roaming\Composer\vendor\bin;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\Users\adam.albison\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
219
+ PATH=C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\ts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\node_modules\.bin;C:\Users\adam.albison\node_modules\.bin;C:\Users\node_modules\.bin;C:\node_modules\.bin;C:\Users\adam.albison\AppData\Roaming\npm\node_modules\npm\node_modules\@npmcli\run-script\lib\node-gyp-bin;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\dotnet\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Users\adam.albison\scoop\apps\openjdk\current\bin;C:\Users\adam.albison\AppData\Local\Microsoft\WindowsApps;C:\Users\adam.albison\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\adam.albison\.bun\bin;C:\xampp\php;C:\Users\adam.albison\AppData\Local\ComposerSetup\bin;C:\Users\adam.albison\AppData\Roaming\Composer\vendor\bin;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\Users\adam.albison\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
218
220
  USERNAME=adam.albison
219
221
  OS=Windows_NT
220
222
  PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
@@ -229,17 +231,17 @@ Periodic native trim disabled
229
231
  --------------- S Y S T E M ---------------
230
232
 
231
233
  OS:
232
- Windows 11 , 64 bit Build 26100 (10.0.26100.7019)
233
- OS uptime: 8 days 5:33 hours
234
+ Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
235
+ OS uptime: 8 days 9:25 hours
234
236
  Hyper-V role detected
235
237
 
236
238
  CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 158 stepping 10 microcode 0xde, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, f16c
237
239
  Processor Information for the first 12 processors :
238
240
  Max Mhz: 3192, Current Mhz: 3192, Mhz Limit: 3192
239
241
 
240
- Memory: 4k page, system-wide physical 32638M (5918M free)
241
- TotalPageFile size 36648M (AvailPageFile size 862M)
242
- current process WorkingSet (physical memory assigned to process): 18M, peak: 18M
242
+ Memory: 4k page, system-wide physical 32638M (5375M free)
243
+ TotalPageFile size 36734M (AvailPageFile size 692M)
244
+ current process WorkingSet (physical memory assigned to process): 20M, peak: 20M
243
245
  current process commit charge ("private bytes"): 69M, peak: 581M
244
246
 
245
247
  vm_info: OpenJDK 64-Bit Server VM (23.0.1+11-39) for windows-amd64 JRE (23.0.1+11-39), built on 2024-09-30T07:20:43Z with MS VC++ 17.6 (VS2022)
@@ -0,0 +1,249 @@
1
+ #
2
+ # There is insufficient memory for the Java Runtime Environment to continue.
3
+ # Native memory allocation (mmap) failed to map 536870912 bytes. Error detail: G1 virtual space
4
+ # Possible reasons:
5
+ # The system is out of physical RAM or swap space
6
+ # This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
7
+ # Possible solutions:
8
+ # Reduce memory load on the system
9
+ # Increase physical memory or swap space
10
+ # Check if swap backing store is full
11
+ # Decrease Java heap size (-Xmx/-Xms)
12
+ # Decrease number of Java threads
13
+ # Decrease Java thread stack sizes (-Xss)
14
+ # Set larger code cache with -XX:ReservedCodeCacheSize=
15
+ # JVM is running with Zero Based Compressed Oops mode in which the Java heap is
16
+ # placed in the first 32GB address space. The Java Heap base address is the
17
+ # maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
18
+ # to set the Java Heap base and to place the Java Heap above 32GB virtual address.
19
+ # This output file may be truncated or incomplete.
20
+ #
21
+ # Out of Memory Error (os_windows.cpp:3703), pid=44560, tid=58072
22
+ #
23
+ # JRE version: (23.0.1+11) (build )
24
+ # Java VM: OpenJDK 64-Bit Server VM (23.0.1+11-39, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
25
+ # No core dump will be written. Minidumps are not enabled by default on client versions of Windows
26
+ #
27
+
28
+ --------------- S U M M A R Y ------------
29
+
30
+ Command Line: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar help
31
+
32
+ Host: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz, 12 cores, 31G, Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
33
+ Time: Thu Feb 26 12:50:05 2026 GMT Standard Time elapsed time: 0.373360 seconds (0d 0h 0m 0s)
34
+
35
+ --------------- T H R E A D ---------------
36
+
37
+ Current thread (0x0000029e02b22110): JavaThread "Unknown thread" [_thread_in_vm, id=58072, stack(0x000000e0a1b00000,0x000000e0a1c00000) (1024K)]
38
+
39
+ Stack: [0x000000e0a1b00000,0x000000e0a1c00000]
40
+ Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
41
+ V [jvm.dll+0x6e08b9] (no source info available)
42
+ V [jvm.dll+0x87dc83] (no source info available)
43
+ V [jvm.dll+0x88010e] (no source info available)
44
+ V [jvm.dll+0x8807e3] (no source info available)
45
+ V [jvm.dll+0x27aee6] (no source info available)
46
+ V [jvm.dll+0x6dd1c5] (no source info available)
47
+ V [jvm.dll+0x6d104a] (no source info available)
48
+ V [jvm.dll+0x35b3ea] (no source info available)
49
+ V [jvm.dll+0x3637f6] (no source info available)
50
+ V [jvm.dll+0x34fd5e] (no source info available)
51
+ V [jvm.dll+0x34fff8] (no source info available)
52
+ V [jvm.dll+0x3289cc] (no source info available)
53
+ V [jvm.dll+0x32966e] (no source info available)
54
+ V [jvm.dll+0x844355] (no source info available)
55
+ V [jvm.dll+0x3b9848] (no source info available)
56
+ V [jvm.dll+0x82d14c] (no source info available)
57
+ V [jvm.dll+0x454d4e] (no source info available)
58
+ V [jvm.dll+0x456bd1] (no source info available)
59
+ C [jli.dll+0x52a3] (no source info available)
60
+ C [ucrtbase.dll+0x37b0] (no source info available)
61
+ C [KERNEL32.DLL+0x2e8d7] (no source info available)
62
+ C [ntdll.dll+0x8c40c] (no source info available)
63
+
64
+ Lock stack of current Java thread (top to bottom):
65
+
66
+
67
+ --------------- P R O C E S S ---------------
68
+
69
+ Threads class SMR info:
70
+ _java_thread_list=0x00007ffea6af3618, length=0, elements={
71
+ }
72
+
73
+ Java Threads: ( => current thread )
74
+ Total: 0
75
+
76
+ Other Threads:
77
+ 0x0000029e1e7e0ac0 WorkerThread "GC Thread#0" [id=55112, stack(0x000000e0a1c00000,0x000000e0a1d00000) (1024K)]
78
+ 0x0000029e06a67ea0 ConcurrentGCThread "G1 Main Marker" [id=48132, stack(0x000000e0a1d00000,0x000000e0a1e00000) (1024K)]
79
+ 0x0000029e06a6b790 WorkerThread "G1 Conc#0" [id=59992, stack(0x000000e0a1e00000,0x000000e0a1f00000) (1024K)]
80
+
81
+ [error occurred during error reporting (printing all threads), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffea623bfba]
82
+ VM state: not at safepoint (not fully initialized)
83
+
84
+ VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
85
+ [0x00007ffea6b73a10] Heap_lock - owner thread: 0x0000029e02b22110
86
+
87
+ Heap address: 0x0000000602000000, size: 8160 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
88
+
89
+ CDS archive(s) mapped at: [0x0000000000000000-0x0000000000000000-0x0000000000000000), size 0, SharedBaseAddress: 0x0000000800000000, ArchiveRelocationMode: 1.
90
+ Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0x0
91
+
92
+ GC Precious Log:
93
+ CardTable entry size: 512
94
+ Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 32 size 80 Howl #buckets 8 coarsen threshold 7372 Howl Bitmap #cards 1024 size 144 coarsen threshold 921 Card regions per heap region 1 cards per card region 8192
95
+
96
+ Heap:
97
+ garbage-first heap total reserved 8355840K, committed 0K, used 0K [0x0000000602000000, 0x0000000800000000)
98
+ region size 4096K, 0 young (0K), 0 survivors (0K)
99
+
100
+ [error occurred during error reporting (printing heap information), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffea663c3c9]
101
+ GC Heap History (0 events):
102
+ No events
103
+
104
+ Dll operation events (1 events):
105
+ Event: 0.084 Loaded shared library C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
106
+
107
+ Deoptimization events (0 events):
108
+ No events
109
+
110
+ Classes loaded (0 events):
111
+ No events
112
+
113
+ Classes unloaded (0 events):
114
+ No events
115
+
116
+ Classes redefined (0 events):
117
+ No events
118
+
119
+ Internal exceptions (0 events):
120
+ No events
121
+
122
+ VM Operations (0 events):
123
+ No events
124
+
125
+ Memory protections (0 events):
126
+ No events
127
+
128
+ Nmethod flushes (0 events):
129
+ No events
130
+
131
+ Events (0 events):
132
+ No events
133
+
134
+
135
+ Dynamic libraries:
136
+ 0x00007ff7ea8c0000 - 0x00007ff7ea8ce000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.exe
137
+ 0x00007fff6d440000 - 0x00007fff6d6a8000 C:\WINDOWS\SYSTEM32\ntdll.dll
138
+ 0x00007fff6c6a0000 - 0x00007fff6c769000 C:\WINDOWS\System32\KERNEL32.DLL
139
+ 0x00007fff6ab40000 - 0x00007fff6af31000 C:\WINDOWS\System32\KERNELBASE.dll
140
+ 0x00007fff6b090000 - 0x00007fff6b1db000 C:\WINDOWS\System32\ucrtbase.dll
141
+ 0x00007fff5cdc0000 - 0x00007fff5cddb000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\VCRUNTIME140.dll
142
+ 0x00007fff5ded0000 - 0x00007fff5dee7000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jli.dll
143
+ 0x00007fff6d0f0000 - 0x00007fff6d2b6000 C:\WINDOWS\System32\USER32.dll
144
+ 0x00007fff69f40000 - 0x00007fff69f67000 C:\WINDOWS\System32\win32u.dll
145
+ 0x00007fff6c770000 - 0x00007fff6c79b000 C:\WINDOWS\System32\GDI32.dll
146
+ 0x00007fff6aa10000 - 0x00007fff6ab3b000 C:\WINDOWS\System32\gdi32full.dll
147
+ 0x00007fff5d810000 - 0x00007fff5daa3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7824_none_3e0870b2e3345462\COMCTL32.dll
148
+ 0x00007fff6bcb0000 - 0x00007fff6bd59000 C:\WINDOWS\System32\msvcrt.dll
149
+ 0x00007fff69d20000 - 0x00007fff69dc3000 C:\WINDOWS\System32\msvcp_win.dll
150
+ 0x00007fff6d3c0000 - 0x00007fff6d3f1000 C:\WINDOWS\System32\IMM32.DLL
151
+ 0x00007fff61bb0000 - 0x00007fff61d0e000 C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409\TmUmEvt64.dll
152
+ 0x00007fff6b2e0000 - 0x00007fff6b2e8000 C:\WINDOWS\System32\PSAPI.DLL
153
+ 0x00007fff6c440000 - 0x00007fff6c4f4000 C:\WINDOWS\System32\ADVAPI32.dll
154
+ 0x00007fff6d2c0000 - 0x00007fff6d366000 C:\WINDOWS\System32\sechost.dll
155
+ 0x00007fff6ced0000 - 0x00007fff6cfe8000 C:\WINDOWS\System32\RPCRT4.dll
156
+ 0x0000000071440000 - 0x0000000071567000 C:\WINDOWS\system32\tmumh\20019\TmMon\2.9.0.1243\tmmon64.dll
157
+ 0x00007fff6cff0000 - 0x00007fff6d057000 C:\WINDOWS\System32\Shlwapi.dll
158
+ 0x00007fff6a1a0000 - 0x00007fff6aa03000 C:\WINDOWS\System32\Windows.Storage.dll
159
+ 0x00007fff6c7a0000 - 0x00007fff6cb26000 C:\WINDOWS\System32\combase.dll
160
+ 0x00007fff5fb80000 - 0x00007fff5fb8c000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\vcruntime140_1.dll
161
+ 0x00007fff44960000 - 0x00007fff449ee000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\msvcp140.dll
162
+ 0x00007ffea5f00000 - 0x00007ffea6c4f000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\server\jvm.dll
163
+ 0x00007fff6b4d0000 - 0x00007fff6b544000 C:\WINDOWS\System32\WS2_32.dll
164
+ 0x00007fff69b80000 - 0x00007fff69bde000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
165
+ 0x00007fff5d7d0000 - 0x00007fff5d805000 C:\WINDOWS\SYSTEM32\WINMM.dll
166
+ 0x00007fff62590000 - 0x00007fff6259b000 C:\WINDOWS\SYSTEM32\VERSION.dll
167
+ 0x00007fff69b60000 - 0x00007fff69b74000 C:\WINDOWS\SYSTEM32\UMPDC.dll
168
+ 0x0000029e05d20000 - 0x0000029e05d23000 C:\WINDOWS\system32\Sfc.dll
169
+ 0x00007fff4a1c0000 - 0x00007fff4a1ca000 C:\WINDOWS\SYSTEM32\sfc_os.DLL
170
+ 0x00007fff69920000 - 0x00007fff69a1b000 C:\WINDOWS\SYSTEM32\ServicingCommon.dll
171
+ 0x00007fff6bd60000 - 0x00007fff6c1e9000 C:\WINDOWS\System32\SETUPAPI.dll
172
+ 0x00007fff68950000 - 0x00007fff6896b000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
173
+ 0x00007fff5df50000 - 0x00007fff5df5a000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jimage.dll
174
+ 0x00007fff67a20000 - 0x00007fff67c62000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
175
+ 0x00007fff6cc10000 - 0x00007fff6cce7000 C:\WINDOWS\System32\OLEAUT32.dll
176
+ 0x00007fff46870000 - 0x00007fff468ab000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
177
+ 0x00007fff6a0f0000 - 0x00007fff6a195000 C:\WINDOWS\System32\bcryptPrimitives.dll
178
+ 0x00007fff5cd20000 - 0x00007fff5cd3e000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
179
+ 0x0000029e061a0000 - 0x0000029e06337000 C:\WINDOWS\System32\ole32.dll
180
+ 0x00007fff6b550000 - 0x00007fff6bca2000 C:\WINDOWS\System32\SHELL32.dll
181
+ 0x00007fff69dd0000 - 0x00007fff69f3a000 C:\WINDOWS\System32\wintypes.dll
182
+
183
+ dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
184
+ symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7824_none_3e0870b2e3345462;C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409;C:\WINDOWS\system32\tmumh\20019\TmMon\2.9.0.1243;C:\Program Files\OpenJDK\jdk-23.0.1\bin\server
185
+
186
+ VM Arguments:
187
+ java_command: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar help
188
+ java_class_path (initial): C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar
189
+ Launcher Type: SUN_STANDARD
190
+
191
+ [Global flags]
192
+ intx CICompilerCount = 4 {product} {ergonomic}
193
+ uint ConcGCThreads = 3 {product} {ergonomic}
194
+ uint G1ConcRefinementThreads = 10 {product} {ergonomic}
195
+ size_t G1HeapRegionSize = 4194304 {product} {ergonomic}
196
+ size_t InitialHeapSize = 536870912 {product} {ergonomic}
197
+ size_t MarkStackSize = 4194304 {product} {ergonomic}
198
+ size_t MarkStackSizeMax = 536870912 {product} {ergonomic}
199
+ size_t MaxHeapSize = 8556380160 {product} {ergonomic}
200
+ size_t MinHeapDeltaBytes = 4194304 {product} {ergonomic}
201
+ size_t MinHeapSize = 8388608 {product} {ergonomic}
202
+ uintx NonNMethodCodeHeapSize = 5832704 {pd product} {ergonomic}
203
+ uintx NonProfiledCodeHeapSize = 122945536 {pd product} {ergonomic}
204
+ uintx ProfiledCodeHeapSize = 122880000 {pd product} {ergonomic}
205
+ uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
206
+ bool SegmentedCodeCache = true {product} {ergonomic}
207
+ size_t SoftMaxHeapSize = 8556380160 {manageable} {ergonomic}
208
+ bool UseCompressedOops = true {product lp64_product} {ergonomic}
209
+ bool UseG1GC = true {product} {ergonomic}
210
+ bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
211
+
212
+ Logging:
213
+ Log output configuration:
214
+ #0: stdout all=warning uptime,level,tags foldmultilines=false
215
+ #1: stderr all=off uptime,level,tags foldmultilines=false
216
+
217
+ Environment Variables:
218
+ JAVA_HOME=C:\Program Files\OpenJDK\jdk-23.0.1
219
+ PATH=C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\ts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\node_modules\.bin;C:\Users\adam.albison\node_modules\.bin;C:\Users\node_modules\.bin;C:\node_modules\.bin;C:\Users\adam.albison\AppData\Roaming\npm\node_modules\npm\node_modules\@npmcli\run-script\lib\node-gyp-bin;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\dotnet\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Users\adam.albison\scoop\apps\openjdk\current\bin;C:\Users\adam.albison\AppData\Local\Microsoft\WindowsApps;C:\Users\adam.albison\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\adam.albison\.bun\bin;C:\xampp\php;C:\Users\adam.albison\AppData\Local\ComposerSetup\bin;C:\Users\adam.albison\AppData\Roaming\Composer\vendor\bin;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\Users\adam.albison\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
220
+ USERNAME=adam.albison
221
+ OS=Windows_NT
222
+ PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
223
+ TMP=C:\Users\ADAM~1.ALB\AppData\Local\Temp
224
+ TEMP=C:\Users\ADAM~1.ALB\AppData\Local\Temp
225
+
226
+
227
+
228
+
229
+ Periodic native trim disabled
230
+
231
+ --------------- S Y S T E M ---------------
232
+
233
+ OS:
234
+ Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
235
+ OS uptime: 8 days 9:28 hours
236
+ Hyper-V role detected
237
+
238
+ CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 158 stepping 10 microcode 0xde, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, f16c
239
+ Processor Information for the first 12 processors :
240
+ Max Mhz: 3192, Current Mhz: 3192, Mhz Limit: 3192
241
+
242
+ Memory: 4k page, system-wide physical 32638M (5442M free)
243
+ TotalPageFile size 36734M (AvailPageFile size 640M)
244
+ current process WorkingSet (physical memory assigned to process): 20M, peak: 20M
245
+ current process commit charge ("private bytes"): 69M, peak: 582M
246
+
247
+ vm_info: OpenJDK 64-Bit Server VM (23.0.1+11-39) for windows-amd64 JRE (23.0.1+11-39), built on 2024-09-30T07:20:43Z with MS VC++ 17.6 (VS2022)
248
+
249
+ END.
@@ -0,0 +1,249 @@
1
+ #
2
+ # There is insufficient memory for the Java Runtime Environment to continue.
3
+ # Native memory allocation (mmap) failed to map 536870912 bytes. Error detail: G1 virtual space
4
+ # Possible reasons:
5
+ # The system is out of physical RAM or swap space
6
+ # This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
7
+ # Possible solutions:
8
+ # Reduce memory load on the system
9
+ # Increase physical memory or swap space
10
+ # Check if swap backing store is full
11
+ # Decrease Java heap size (-Xmx/-Xms)
12
+ # Decrease number of Java threads
13
+ # Decrease Java thread stack sizes (-Xss)
14
+ # Set larger code cache with -XX:ReservedCodeCacheSize=
15
+ # JVM is running with Zero Based Compressed Oops mode in which the Java heap is
16
+ # placed in the first 32GB address space. The Java Heap base address is the
17
+ # maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
18
+ # to set the Java Heap base and to place the Java Heap above 32GB virtual address.
19
+ # This output file may be truncated or incomplete.
20
+ #
21
+ # Out of Memory Error (os_windows.cpp:3703), pid=53988, tid=55828
22
+ #
23
+ # JRE version: (23.0.1+11) (build )
24
+ # Java VM: OpenJDK 64-Bit Server VM (23.0.1+11-39, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
25
+ # No core dump will be written. Minidumps are not enabled by default on client versions of Windows
26
+ #
27
+
28
+ --------------- S U M M A R Y ------------
29
+
30
+ Command Line: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar help
31
+
32
+ Host: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz, 12 cores, 31G, Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
33
+ Time: Thu Feb 26 12:47:25 2026 GMT Standard Time elapsed time: 2.110115 seconds (0d 0h 0m 2s)
34
+
35
+ --------------- T H R E A D ---------------
36
+
37
+ Current thread (0x00000175238b1490): JavaThread "Unknown thread" [_thread_in_vm, id=55828, stack(0x0000002945d00000,0x0000002945e00000) (1024K)]
38
+
39
+ Stack: [0x0000002945d00000,0x0000002945e00000]
40
+ Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
41
+ V [jvm.dll+0x6e08b9] (no source info available)
42
+ V [jvm.dll+0x87dc83] (no source info available)
43
+ V [jvm.dll+0x88010e] (no source info available)
44
+ V [jvm.dll+0x8807e3] (no source info available)
45
+ V [jvm.dll+0x27aee6] (no source info available)
46
+ V [jvm.dll+0x6dd1c5] (no source info available)
47
+ V [jvm.dll+0x6d104a] (no source info available)
48
+ V [jvm.dll+0x35b3ea] (no source info available)
49
+ V [jvm.dll+0x3637f6] (no source info available)
50
+ V [jvm.dll+0x34fd5e] (no source info available)
51
+ V [jvm.dll+0x34fff8] (no source info available)
52
+ V [jvm.dll+0x3289cc] (no source info available)
53
+ V [jvm.dll+0x32966e] (no source info available)
54
+ V [jvm.dll+0x844355] (no source info available)
55
+ V [jvm.dll+0x3b9848] (no source info available)
56
+ V [jvm.dll+0x82d14c] (no source info available)
57
+ V [jvm.dll+0x454d4e] (no source info available)
58
+ V [jvm.dll+0x456bd1] (no source info available)
59
+ C [jli.dll+0x52a3] (no source info available)
60
+ C [ucrtbase.dll+0x37b0] (no source info available)
61
+ C [KERNEL32.DLL+0x2e8d7] (no source info available)
62
+ C [ntdll.dll+0x8c40c] (no source info available)
63
+
64
+ Lock stack of current Java thread (top to bottom):
65
+
66
+
67
+ --------------- P R O C E S S ---------------
68
+
69
+ Threads class SMR info:
70
+ _java_thread_list=0x00007ffe9c7f3618, length=0, elements={
71
+ }
72
+
73
+ Java Threads: ( => current thread )
74
+ Total: 0
75
+
76
+ Other Threads:
77
+ 0x000001753f6f08a0 WorkerThread "GC Thread#0" [id=54268, stack(0x0000002945e00000,0x0000002945f00000) (1024K)]
78
+ 0x0000017527987740 ConcurrentGCThread "G1 Main Marker" [id=59580, stack(0x0000002945f00000,0x0000002946000000) (1024K)]
79
+ 0x000001752798a060 WorkerThread "G1 Conc#0" [id=59932, stack(0x0000002946000000,0x0000002946100000) (1024K)]
80
+
81
+ [error occurred during error reporting (printing all threads), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe9bf3bfba]
82
+ VM state: not at safepoint (not fully initialized)
83
+
84
+ VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
85
+ [0x00007ffe9c873a10] Heap_lock - owner thread: 0x00000175238b1490
86
+
87
+ Heap address: 0x0000000602000000, size: 8160 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
88
+
89
+ CDS archive(s) mapped at: [0x0000000000000000-0x0000000000000000-0x0000000000000000), size 0, SharedBaseAddress: 0x0000000800000000, ArchiveRelocationMode: 1.
90
+ Narrow klass base: 0x0000000000000000, Narrow klass shift: 0, Narrow klass range: 0x0
91
+
92
+ GC Precious Log:
93
+ CardTable entry size: 512
94
+ Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 32 size 80 Howl #buckets 8 coarsen threshold 7372 Howl Bitmap #cards 1024 size 144 coarsen threshold 921 Card regions per heap region 1 cards per card region 8192
95
+
96
+ Heap:
97
+ garbage-first heap total reserved 8355840K, committed 0K, used 0K [0x0000000602000000, 0x0000000800000000)
98
+ region size 4096K, 0 young (0K), 0 survivors (0K)
99
+
100
+ [error occurred during error reporting (printing heap information), id 0xc0000005, EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ffe9c33c3c9]
101
+ GC Heap History (0 events):
102
+ No events
103
+
104
+ Dll operation events (1 events):
105
+ Event: 0.073 Loaded shared library C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
106
+
107
+ Deoptimization events (0 events):
108
+ No events
109
+
110
+ Classes loaded (0 events):
111
+ No events
112
+
113
+ Classes unloaded (0 events):
114
+ No events
115
+
116
+ Classes redefined (0 events):
117
+ No events
118
+
119
+ Internal exceptions (0 events):
120
+ No events
121
+
122
+ VM Operations (0 events):
123
+ No events
124
+
125
+ Memory protections (0 events):
126
+ No events
127
+
128
+ Nmethod flushes (0 events):
129
+ No events
130
+
131
+ Events (0 events):
132
+ No events
133
+
134
+
135
+ Dynamic libraries:
136
+ 0x00007ff7ea8c0000 - 0x00007ff7ea8ce000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.exe
137
+ 0x00007fff6d440000 - 0x00007fff6d6a8000 C:\WINDOWS\SYSTEM32\ntdll.dll
138
+ 0x00007fff6c6a0000 - 0x00007fff6c769000 C:\WINDOWS\System32\KERNEL32.DLL
139
+ 0x00007fff6ab40000 - 0x00007fff6af31000 C:\WINDOWS\System32\KERNELBASE.dll
140
+ 0x00007fff6b090000 - 0x00007fff6b1db000 C:\WINDOWS\System32\ucrtbase.dll
141
+ 0x00007fff55980000 - 0x00007fff5599b000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\VCRUNTIME140.dll
142
+ 0x00007fff53990000 - 0x00007fff539a7000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jli.dll
143
+ 0x00007fff6d0f0000 - 0x00007fff6d2b6000 C:\WINDOWS\System32\USER32.dll
144
+ 0x00007fff69f40000 - 0x00007fff69f67000 C:\WINDOWS\System32\win32u.dll
145
+ 0x00007fff6c770000 - 0x00007fff6c79b000 C:\WINDOWS\System32\GDI32.dll
146
+ 0x00007fff6aa10000 - 0x00007fff6ab3b000 C:\WINDOWS\System32\gdi32full.dll
147
+ 0x00007fff69d20000 - 0x00007fff69dc3000 C:\WINDOWS\System32\msvcp_win.dll
148
+ 0x00007fff5d810000 - 0x00007fff5daa3000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7824_none_3e0870b2e3345462\COMCTL32.dll
149
+ 0x00007fff6bcb0000 - 0x00007fff6bd59000 C:\WINDOWS\System32\msvcrt.dll
150
+ 0x00007fff6d3c0000 - 0x00007fff6d3f1000 C:\WINDOWS\System32\IMM32.DLL
151
+ 0x00007fff61bb0000 - 0x00007fff61d0e000 C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409\TmUmEvt64.dll
152
+ 0x00007fff6b2e0000 - 0x00007fff6b2e8000 C:\WINDOWS\System32\PSAPI.DLL
153
+ 0x00007fff6c440000 - 0x00007fff6c4f4000 C:\WINDOWS\System32\ADVAPI32.dll
154
+ 0x00007fff6d2c0000 - 0x00007fff6d366000 C:\WINDOWS\System32\sechost.dll
155
+ 0x00007fff6ced0000 - 0x00007fff6cfe8000 C:\WINDOWS\System32\RPCRT4.dll
156
+ 0x0000000071440000 - 0x0000000071567000 C:\WINDOWS\system32\tmumh\20019\TmMon\2.9.0.1243\tmmon64.dll
157
+ 0x00007fff6cff0000 - 0x00007fff6d057000 C:\WINDOWS\System32\Shlwapi.dll
158
+ 0x00007fff6a1a0000 - 0x00007fff6aa03000 C:\WINDOWS\System32\Windows.Storage.dll
159
+ 0x00007fff6c7a0000 - 0x00007fff6cb26000 C:\WINDOWS\System32\combase.dll
160
+ 0x00007fff5ddb0000 - 0x00007fff5ddbc000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\vcruntime140_1.dll
161
+ 0x00007fff2d370000 - 0x00007fff2d3fe000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\msvcp140.dll
162
+ 0x00007ffe9bc00000 - 0x00007ffe9c94f000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\server\jvm.dll
163
+ 0x00007fff6b4d0000 - 0x00007fff6b544000 C:\WINDOWS\System32\WS2_32.dll
164
+ 0x00007fff69b80000 - 0x00007fff69bde000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
165
+ 0x00007fff5d7d0000 - 0x00007fff5d805000 C:\WINDOWS\SYSTEM32\WINMM.dll
166
+ 0x00007fff62590000 - 0x00007fff6259b000 C:\WINDOWS\SYSTEM32\VERSION.dll
167
+ 0x00007fff69b60000 - 0x00007fff69b74000 C:\WINDOWS\SYSTEM32\UMPDC.dll
168
+ 0x0000017523e20000 - 0x0000017523e23000 C:\WINDOWS\system32\Sfc.dll
169
+ 0x00007fff4a1c0000 - 0x00007fff4a1ca000 C:\WINDOWS\SYSTEM32\sfc_os.DLL
170
+ 0x00007fff69920000 - 0x00007fff69a1b000 C:\WINDOWS\SYSTEM32\ServicingCommon.dll
171
+ 0x00007fff6bd60000 - 0x00007fff6c1e9000 C:\WINDOWS\System32\SETUPAPI.dll
172
+ 0x00007fff68950000 - 0x00007fff6896b000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
173
+ 0x00007fff5dca0000 - 0x00007fff5dcaa000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\jimage.dll
174
+ 0x00007fff67a20000 - 0x00007fff67c62000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
175
+ 0x00007fff6cc10000 - 0x00007fff6cce7000 C:\WINDOWS\System32\OLEAUT32.dll
176
+ 0x00007fff46870000 - 0x00007fff468ab000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
177
+ 0x00007fff6a0f0000 - 0x00007fff6a195000 C:\WINDOWS\System32\bcryptPrimitives.dll
178
+ 0x00007fff536b0000 - 0x00007fff536ce000 C:\Program Files\OpenJDK\jdk-23.0.1\bin\java.dll
179
+ 0x00000175270a0000 - 0x0000017527237000 C:\WINDOWS\System32\ole32.dll
180
+ 0x00007fff6b550000 - 0x00007fff6bca2000 C:\WINDOWS\System32\SHELL32.dll
181
+ 0x00007fff69dd0000 - 0x00007fff69f3a000 C:\WINDOWS\System32\wintypes.dll
182
+
183
+ dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
184
+ symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.7824_none_3e0870b2e3345462;C:\WINDOWS\system32\tmumh\20019\AddOn\8.55.0.1409;C:\WINDOWS\system32\tmumh\20019\TmMon\2.9.0.1243;C:\Program Files\OpenJDK\jdk-23.0.1\bin\server
185
+
186
+ VM Arguments:
187
+ java_command: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar help
188
+ java_class_path (initial): C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar
189
+ Launcher Type: SUN_STANDARD
190
+
191
+ [Global flags]
192
+ intx CICompilerCount = 4 {product} {ergonomic}
193
+ uint ConcGCThreads = 3 {product} {ergonomic}
194
+ uint G1ConcRefinementThreads = 10 {product} {ergonomic}
195
+ size_t G1HeapRegionSize = 4194304 {product} {ergonomic}
196
+ size_t InitialHeapSize = 536870912 {product} {ergonomic}
197
+ size_t MarkStackSize = 4194304 {product} {ergonomic}
198
+ size_t MarkStackSizeMax = 536870912 {product} {ergonomic}
199
+ size_t MaxHeapSize = 8556380160 {product} {ergonomic}
200
+ size_t MinHeapDeltaBytes = 4194304 {product} {ergonomic}
201
+ size_t MinHeapSize = 8388608 {product} {ergonomic}
202
+ uintx NonNMethodCodeHeapSize = 5832704 {pd product} {ergonomic}
203
+ uintx NonProfiledCodeHeapSize = 122945536 {pd product} {ergonomic}
204
+ uintx ProfiledCodeHeapSize = 122880000 {pd product} {ergonomic}
205
+ uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
206
+ bool SegmentedCodeCache = true {product} {ergonomic}
207
+ size_t SoftMaxHeapSize = 8556380160 {manageable} {ergonomic}
208
+ bool UseCompressedOops = true {product lp64_product} {ergonomic}
209
+ bool UseG1GC = true {product} {ergonomic}
210
+ bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
211
+
212
+ Logging:
213
+ Log output configuration:
214
+ #0: stdout all=warning uptime,level,tags foldmultilines=false
215
+ #1: stderr all=off uptime,level,tags foldmultilines=false
216
+
217
+ Environment Variables:
218
+ JAVA_HOME=C:\Program Files\OpenJDK\jdk-23.0.1
219
+ PATH=C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\ts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\node_modules\.bin;C:\Users\adam.albison\PhpstormProjects\node_modules\.bin;C:\Users\adam.albison\node_modules\.bin;C:\Users\node_modules\.bin;C:\node_modules\.bin;C:\Users\adam.albison\AppData\Roaming\npm\node_modules\npm\node_modules\@npmcli\run-script\lib\node-gyp-bin;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\OpenSSH\;C:\Program Files\PuTTY\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\dotnet\;C:\Program Files\Git\cmd;C:\Program Files\nodejs\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Users\adam.albison\scoop\apps\openjdk\current\bin;C:\Users\adam.albison\AppData\Local\Microsoft\WindowsApps;C:\Users\adam.albison\AppData\Local\JetBrains\Toolbox\scripts;C:\Users\adam.albison\.bun\bin;C:\xampp\php;C:\Users\adam.albison\AppData\Local\ComposerSetup\bin;C:\Users\adam.albison\AppData\Roaming\Composer\vendor\bin;C:\Program Files\OpenJDK\jdk-23.0.1\bin;C:\Users\adam.albison\AppData\Roaming\npm;%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
220
+ USERNAME=adam.albison
221
+ OS=Windows_NT
222
+ PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
223
+ TMP=C:\Users\ADAM~1.ALB\AppData\Local\Temp
224
+ TEMP=C:\Users\ADAM~1.ALB\AppData\Local\Temp
225
+
226
+
227
+
228
+
229
+ Periodic native trim disabled
230
+
231
+ --------------- S Y S T E M ---------------
232
+
233
+ OS:
234
+ Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
235
+ OS uptime: 8 days 9:25 hours
236
+ Hyper-V role detected
237
+
238
+ CPU: total 12 (initial active 12) (6 cores per cpu, 2 threads per core) family 6 model 158 stepping 10 microcode 0xde, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, rtm, adx, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, f16c
239
+ Processor Information for the first 12 processors :
240
+ Max Mhz: 3192, Current Mhz: 3192, Mhz Limit: 3192
241
+
242
+ Memory: 4k page, system-wide physical 32638M (5303M free)
243
+ TotalPageFile size 36734M (AvailPageFile size 493M)
244
+ current process WorkingSet (physical memory assigned to process): 20M, peak: 20M
245
+ current process commit charge ("private bytes"): 69M, peak: 581M
246
+
247
+ vm_info: OpenJDK 64-Bit Server VM (23.0.1+11-39) for windows-amd64 JRE (23.0.1+11-39), built on 2024-09-30T07:20:43Z with MS VC++ 17.6 (VS2022)
248
+
249
+ END.
@@ -0,0 +1,40 @@
1
+ #
2
+ # There is insufficient memory for the Java Runtime Environment to continue.
3
+ # Native memory allocation (mmap) failed to map 536870912 bytes. Error detail: G1 virtual space
4
+ # Possible reasons:
5
+ # The system is out of physical RAM or swap space
6
+ # This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
7
+ # Possible solutions:
8
+ # Reduce memory load on the system
9
+ # Increase physical memory or swap space
10
+ # Check if swap backing store is full
11
+ # Decrease Java heap size (-Xmx/-Xms)
12
+ # Decrease number of Java threads
13
+ # Decrease Java thread stack sizes (-Xss)
14
+ # Set larger code cache with -XX:ReservedCodeCacheSize=
15
+ # JVM is running with Zero Based Compressed Oops mode in which the Java heap is
16
+ # placed in the first 32GB address space. The Java Heap base address is the
17
+ # maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
18
+ # to set the Java Heap base and to place the Java Heap above 32GB virtual address.
19
+ # This output file may be truncated or incomplete.
20
+ #
21
+ # Out of Memory Error (os_windows.cpp:3703), pid=58728, tid=3440
22
+ #
23
+ # JRE version: (23.0.1+11) (build )
24
+ # Java VM: OpenJDK 64-Bit Server VM (23.0.1+11-39, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
25
+ # No core dump will be written. Minidumps are not enabled by default on client versions of Windows
26
+ #
27
+
28
+ --------------- S U M M A R Y ------------
29
+
30
+ Command Line: C:\Users\adam.albison\PhpstormProjects\yellowgrid-api\storage\scripts\openapi-generator\node_modules\@openapitools\openapi-generator-cli\versions\7.14.0.jar completion
31
+
32
+ Host: Intel(R) Core(TM) i7-8700 CPU @ 3.20GHz, 12 cores, 31G, Windows 11 , 64 bit Build 26100 (10.0.26100.7705)
33
+ Time: Thu Feb 26 12:50:06 2026 GMT Standard Time elapsed time: 1.339246 seconds (0d 0h 0m 1s)
34
+
35
+ --------------- T H R E A D ---------------
36
+
37
+ Current thread (0x000001f96c541d90): JavaThread "Unknown thread" [_thread_in_vm, id=3440, stack(0x00000098e2400000,0x00000098e2500000) (1024K)]
38
+
39
+ Stack: [0x00000098e2400000,0x00000098e2500000]
40
+ Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.2.66-dev.0",
3
+ "version": "3.2.68-dev.0",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -1,8 +0,0 @@
1
- export declare const AutomatedCourierEnum: {
2
- readonly DPD: {
3
- readonly name: "DPD";
4
- readonly value: "DPD";
5
- readonly publicValue: "DPD";
6
- };
7
- };
8
- export type AutomatedCourierEnum = typeof AutomatedCourierEnum;
@@ -1,10 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AutomatedCourierEnum = void 0;
4
- exports.AutomatedCourierEnum = {
5
- "DPD": {
6
- "name": "DPD",
7
- "value": "DPD",
8
- "publicValue": "DPD"
9
- }
10
- };
@@ -1,9 +0,0 @@
1
- export const AutomatedCourierEnum = {
2
- "DPD": {
3
- "name": "DPD",
4
- "value": "DPD",
5
- "publicValue": "DPD"
6
- }
7
- } as const;
8
-
9
- export type AutomatedCourierEnum = typeof AutomatedCourierEnum;