@schemastore/cryproj.54.schema 0.0.4 → 0.0.5

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.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) Florian Keller. All rights reserved.
3
+ Copyright (c) Florian Imdahl. All rights reserved.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -8,5 +8,5 @@ This package contains type definitions for cryproj.54.schema.
8
8
  Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.54.schema.
9
9
 
10
10
  ## Additional Details
11
- * Last updated: Sat, Jul 04, 2020, 11:00:10 GMT
11
+ * Last updated: Fri, Feb 24, 2023, 11:23:32 GMT
12
12
  * Dependencies: none
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- /* tslint:disable */
1
+ /* eslint-disable */
2
2
  /**
3
3
  * This file was automatically generated by json-schema-to-typescript.
4
4
  * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
@@ -2470,18 +2470,22 @@ export type VariableName =
2470
2470
  * The default value of the CVar
2471
2471
  */
2472
2472
  export type ValueOfTheCVar = string;
2473
+ export type PropertiesConsoleVariables = PropertiesConsoleVariablesItems[];
2473
2474
  /**
2474
2475
  * This indicates where the assets are stored
2475
2476
  */
2476
2477
  export type AssetsFolder = string;
2478
+ export type PropertiesContentPropertiesAssets = AssetsFolder[];
2477
2479
  /**
2478
2480
  * This indicates where the code is stored
2479
2481
  */
2480
2482
  export type CodeFolder = string;
2483
+ export type PropertiesContentPropertiesCode = CodeFolder[];
2481
2484
  export type LibSName = string;
2482
2485
  export type LibSNameToImportForAllTheSupportedPlatforms = string;
2483
2486
  export type LibSNameToImportForTheWinX64Platform = string;
2484
2487
  export type LibSNameToImportForTheWinX86Platform = string;
2488
+ export type PropertiesContentPropertiesLibs = PropertiesContentPropertiesLibsItems[];
2485
2489
  /**
2486
2490
  * This indicates the project name
2487
2491
  */
@@ -2500,6 +2504,9 @@ export type PluginName = string;
2500
2504
  */
2501
2505
  export type PluginType = "EPluginType::Native" | "EPluginType::Managed";
2502
2506
  export type ThisPluginWillBeUsedOnlyByThesePlatforms = "pc" | "ps4" | "xboxone" | "linux";
2507
+ export type PropertiesPluginsItemsPropertiesPlatforms = ThisPluginWillBeUsedOnlyByThesePlatforms[];
2508
+ export type PropertiesRequirePropertiesPlugins = PropertiesRequirePropertiesPluginsItems[];
2509
+ export type PropertiesType = string;
2503
2510
  export type ProjectVersion = number;
2504
2511
  /**
2505
2512
  * Console command name
@@ -2696,49 +2703,58 @@ export type CommandName =
2696
2703
  * Arguments that has to be passed to the command. Leave empty if it has not parameters
2697
2704
  */
2698
2705
  export type ValueOfTheCommand = string;
2706
+ export type PropertiesConsoleCommands = PropertiesConsoleCommandsItems[];
2699
2707
 
2700
2708
  export interface CryProjSchema {
2701
- console_variables?: {
2702
- name: VariableName;
2703
- value: ValueOfTheCVar;
2704
- [k: string]: unknown;
2705
- }[];
2706
- content: {
2707
- assets?: AssetsFolder[];
2708
- code: CodeFolder[];
2709
- libs?: {
2710
- name?: LibSName;
2711
- shared?: {
2712
- any?: LibSNameToImportForAllTheSupportedPlatforms;
2713
- win_x64?: LibSNameToImportForTheWinX64Platform;
2714
- win_x86?: LibSNameToImportForTheWinX86Platform;
2715
- [k: string]: unknown;
2716
- };
2717
- [k: string]: unknown;
2718
- }[];
2719
- [k: string]: unknown;
2720
- };
2721
- info: {
2722
- name: ProjectName;
2723
- guid?: ProjectGUID;
2724
- [k: string]: unknown;
2725
- };
2726
- require: {
2727
- engine: EngineVersion;
2728
- plugins?: {
2729
- path: PluginName;
2730
- type: PluginType;
2731
- platforms?: ThisPluginWillBeUsedOnlyByThesePlatforms[];
2732
- [k: string]: unknown;
2733
- }[];
2734
- [k: string]: unknown;
2735
- };
2736
- type?: string;
2709
+ console_variables?: PropertiesConsoleVariables;
2710
+ content: PropertiesContent;
2711
+ info: PropertiesInfo;
2712
+ require: PropertiesRequire;
2713
+ type?: PropertiesType;
2737
2714
  version: ProjectVersion;
2738
- console_commands?: {
2739
- name: CommandName;
2740
- value: ValueOfTheCommand;
2741
- [k: string]: unknown;
2742
- }[];
2715
+ console_commands?: PropertiesConsoleCommands;
2716
+ [k: string]: unknown;
2717
+ }
2718
+ export interface PropertiesConsoleVariablesItems {
2719
+ name: VariableName;
2720
+ value: ValueOfTheCVar;
2721
+ [k: string]: unknown;
2722
+ }
2723
+ export interface PropertiesContent {
2724
+ assets?: PropertiesContentPropertiesAssets;
2725
+ code: PropertiesContentPropertiesCode;
2726
+ libs?: PropertiesContentPropertiesLibs;
2727
+ [k: string]: unknown;
2728
+ }
2729
+ export interface PropertiesContentPropertiesLibsItems {
2730
+ name?: LibSName;
2731
+ shared?: PropertiesContentPropertiesLibsItemsPropertiesShared;
2732
+ [k: string]: unknown;
2733
+ }
2734
+ export interface PropertiesContentPropertiesLibsItemsPropertiesShared {
2735
+ any?: LibSNameToImportForAllTheSupportedPlatforms;
2736
+ win_x64?: LibSNameToImportForTheWinX64Platform;
2737
+ win_x86?: LibSNameToImportForTheWinX86Platform;
2738
+ [k: string]: unknown;
2739
+ }
2740
+ export interface PropertiesInfo {
2741
+ name: ProjectName;
2742
+ guid?: ProjectGUID;
2743
+ [k: string]: unknown;
2744
+ }
2745
+ export interface PropertiesRequire {
2746
+ engine: EngineVersion;
2747
+ plugins?: PropertiesRequirePropertiesPlugins;
2748
+ [k: string]: unknown;
2749
+ }
2750
+ export interface PropertiesRequirePropertiesPluginsItems {
2751
+ path: PluginName;
2752
+ type: PluginType;
2753
+ platforms?: PropertiesPluginsItemsPropertiesPlatforms;
2754
+ [k: string]: unknown;
2755
+ }
2756
+ export interface PropertiesConsoleCommandsItems {
2757
+ name: CommandName;
2758
+ value: ValueOfTheCommand;
2743
2759
  [k: string]: unknown;
2744
2760
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "author": "Florian Keller <github@floriankeller.de>",
2
+ "author": "Florian Imdahl <git@ffflorian.de>",
3
3
  "dependencies": {},
4
4
  "description": "TypeScript definitions for cryproj.54.schema.",
5
5
  "license": "MIT",
@@ -7,8 +7,8 @@
7
7
  "name": "@schemastore/cryproj.54.schema",
8
8
  "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/cryproj.54.schema",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "a14d11a77b99448c3436e124f60cda54d805ae8ac4580caaab15c2da64bfbd5e",
10
+ "typesPublisherContentHash": "7c936790f9120e6dc26ed92d055484e558cfddbe044dc58bba9adf1ebe882a9f",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.4",
12
+ "version": "0.0.5",
13
13
  "typeScriptVersion": "2.2"
14
14
  }