@irohalab/mira-sdk-angular 1.15.0 → 2.0.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 (54) hide show
  1. package/fesm2022/irohalab-mira-sdk-angular.mjs +7 -7
  2. package/index.d.ts +1823 -7
  3. package/package.json +3 -3
  4. package/api/api.d.ts +0 -4
  5. package/api/default.service.d.ts +0 -610
  6. package/api/default.serviceInterface.d.ts +0 -230
  7. package/api.base.service.d.ts +0 -21
  8. package/api.module.d.ts +0 -11
  9. package/configuration.d.ts +0 -107
  10. package/encoder.d.ts +0 -17
  11. package/model/batchGetMainItemByIdListResult.d.ts +0 -13
  12. package/model/batchGetSubItemByIdListResult.d.ts +0 -13
  13. package/model/characterRelationsWithMainItems.d.ts +0 -15
  14. package/model/clientMapping.d.ts +0 -15
  15. package/model/createSubItemFavoriteRequestBody.d.ts +0 -12
  16. package/model/deleteClientMappingByMainItemResponse.d.ts +0 -15
  17. package/model/errorResponse.d.ts +0 -13
  18. package/model/favorite.d.ts +0 -21
  19. package/model/favoriteProgress.d.ts +0 -12
  20. package/model/favoriteStatus.d.ts +0 -17
  21. package/model/getFavoriteResponse.d.ts +0 -13
  22. package/model/getOnAirItemListResponse.d.ts +0 -16
  23. package/model/idListRequestBody.d.ts +0 -12
  24. package/model/imageInfo.d.ts +0 -19
  25. package/model/itemCastCharacterRelation.d.ts +0 -24
  26. package/model/itemEntity.d.ts +0 -23
  27. package/model/itemPersonRelation.d.ts +0 -21
  28. package/model/itemRelation.d.ts +0 -21
  29. package/model/itemRelationsWithMainItems.d.ts +0 -19
  30. package/model/itemSubType.d.ts +0 -55
  31. package/model/itemType.d.ts +0 -24
  32. package/model/listFavoritesResponse.d.ts +0 -20
  33. package/model/listMainItemResponse.d.ts +0 -20
  34. package/model/listSubItemFavoriteResponse.d.ts +0 -17
  35. package/model/mainItem.d.ts +0 -41
  36. package/model/mainItemBasic.d.ts +0 -31
  37. package/model/mainType.d.ts +0 -15
  38. package/model/models.d.ts +0 -39
  39. package/model/onAirItem.d.ts +0 -27
  40. package/model/patchFavoriteBody.d.ts +0 -17
  41. package/model/personRelationsWithMainItems.d.ts +0 -17
  42. package/model/propertyType.d.ts +0 -17
  43. package/model/propertyValue.d.ts +0 -20
  44. package/model/propertyValueValue.d.ts +0 -16
  45. package/model/subItem.d.ts +0 -44
  46. package/model/subItemFavorite.d.ts +0 -16
  47. package/model/succeedEmptyResponse.d.ts +0 -12
  48. package/model/syncFavoritesRequestBody.d.ts +0 -14
  49. package/model/syncFavoritesRequestBodyFavoritesInner.d.ts +0 -14
  50. package/model/syncFavoritesResponse.d.ts +0 -17
  51. package/param.d.ts +0 -37
  52. package/provide-api.d.ts +0 -3
  53. package/query.params.d.ts +0 -61
  54. package/variables.d.ts +0 -8
package/query.params.d.ts DELETED
@@ -1,61 +0,0 @@
1
- import { HttpParams, HttpParameterCodec } from '@angular/common/http';
2
- export declare enum QueryParamStyle {
3
- Json = 0,
4
- Form = 1,
5
- DeepObject = 2,
6
- SpaceDelimited = 3,
7
- PipeDelimited = 4
8
- }
9
- export type Delimiter = "," | " " | "|" | "\t";
10
- export interface ParamOptions {
11
- /** When true, serialized as multiple repeated key=value pairs. When false, serialized as a single key with joined values using `delimiter`. */
12
- explode?: boolean;
13
- /** Delimiter used when explode=false. The delimiter itself is inserted unencoded between encoded values. */
14
- delimiter?: Delimiter;
15
- }
16
- export declare class OpenApiHttpParams {
17
- private params;
18
- private defaults;
19
- private encoder;
20
- /**
21
- * @param encoder Parameter serializer
22
- * @param defaults Global defaults used when a specific parameter has no explicit options.
23
- * By OpenAPI default, explode is true for query params with style=form.
24
- */
25
- constructor(encoder?: HttpParameterCodec, defaults?: {
26
- explode?: boolean;
27
- delimiter?: Delimiter;
28
- });
29
- private resolveOptions;
30
- /**
31
- * Replace the parameter's values and (optionally) its options.
32
- * Options are stored per-parameter (not global).
33
- */
34
- set(key: string, values: string[] | string, options?: ParamOptions): this;
35
- /**
36
- * Append a single value to the parameter. If the parameter didn't exist it will be created
37
- * and use resolved options (global defaults merged with any provided options).
38
- */
39
- append(key: string, value: string, options?: ParamOptions): this;
40
- /**
41
- * Serialize to a query string according to per-parameter OpenAPI options.
42
- * - If explode=true for that parameter → repeated key=value pairs (each value encoded).
43
- * - If explode=false for that parameter → single key=value where values are individually encoded
44
- * and joined using the configured delimiter. The delimiter character is inserted AS-IS
45
- * (not percent-encoded).
46
- */
47
- toString(): string;
48
- /**
49
- * Return parameters as a plain record.
50
- * - If a parameter has exactly one value, returns that value directly.
51
- * - If a parameter has multiple values, returns a readonly array of values.
52
- */
53
- toRecord(): Record<string, string | number | boolean | ReadonlyArray<string | number | boolean>>;
54
- /**
55
- * Return an Angular's HttpParams with an identity parameter codec as the parameters are already encoded.
56
- */
57
- toHttpParams(): HttpParams;
58
- }
59
- export declare function concatHttpParamsObject(httpParams: OpenApiHttpParams, key: string, item: {
60
- [index: string]: any;
61
- }, delimiter: Delimiter): OpenApiHttpParams;
package/variables.d.ts DELETED
@@ -1,8 +0,0 @@
1
- import { InjectionToken } from '@angular/core';
2
- export declare const BASE_PATH: InjectionToken<string>;
3
- export declare const COLLECTION_FORMATS: {
4
- csv: string;
5
- tsv: string;
6
- ssv: string;
7
- pipes: string;
8
- };