@memberjunction/ng-file-storage 2.30.0 → 2.32.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.
@@ -17,55 +17,55 @@ declare const FileUploadMutationSchema: z.ZodObject<{
17
17
  File: z.ZodObject<Omit<{
18
18
  ID: z.ZodString;
19
19
  Name: z.ZodString;
20
- Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
21
- CategoryID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
20
+ Description: z.ZodNullable<z.ZodString>;
21
+ CategoryID: z.ZodNullable<z.ZodString>;
22
22
  ProviderID: z.ZodString;
23
- ContentType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
24
- ProviderKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
23
+ ContentType: z.ZodNullable<z.ZodString>;
24
+ ProviderKey: z.ZodNullable<z.ZodString>;
25
25
  Status: z.ZodString;
26
26
  __mj_CreatedAt: z.ZodDate;
27
27
  __mj_UpdatedAt: z.ZodDate;
28
- Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
28
+ Category: z.ZodNullable<z.ZodString>;
29
29
  Provider: z.ZodString;
30
30
  }, "__mj_CreatedAt" | "__mj_UpdatedAt">, "passthrough", z.ZodTypeAny, z.objectOutputType<Omit<{
31
31
  ID: z.ZodString;
32
32
  Name: z.ZodString;
33
- Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
34
- CategoryID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
33
+ Description: z.ZodNullable<z.ZodString>;
34
+ CategoryID: z.ZodNullable<z.ZodString>;
35
35
  ProviderID: z.ZodString;
36
- ContentType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
37
- ProviderKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
36
+ ContentType: z.ZodNullable<z.ZodString>;
37
+ ProviderKey: z.ZodNullable<z.ZodString>;
38
38
  Status: z.ZodString;
39
39
  __mj_CreatedAt: z.ZodDate;
40
40
  __mj_UpdatedAt: z.ZodDate;
41
- Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
41
+ Category: z.ZodNullable<z.ZodString>;
42
42
  Provider: z.ZodString;
43
43
  }, "__mj_CreatedAt" | "__mj_UpdatedAt">, z.ZodTypeAny, "passthrough">, z.objectInputType<Omit<{
44
44
  ID: z.ZodString;
45
45
  Name: z.ZodString;
46
- Description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
- CategoryID: z.ZodOptional<z.ZodNullable<z.ZodString>>;
46
+ Description: z.ZodNullable<z.ZodString>;
47
+ CategoryID: z.ZodNullable<z.ZodString>;
48
48
  ProviderID: z.ZodString;
49
- ContentType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50
- ProviderKey: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
+ ContentType: z.ZodNullable<z.ZodString>;
50
+ ProviderKey: z.ZodNullable<z.ZodString>;
51
51
  Status: z.ZodString;
52
52
  __mj_CreatedAt: z.ZodDate;
53
53
  __mj_UpdatedAt: z.ZodDate;
54
- Category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
54
+ Category: z.ZodNullable<z.ZodString>;
55
55
  Provider: z.ZodString;
56
56
  }, "__mj_CreatedAt" | "__mj_UpdatedAt">, z.ZodTypeAny, "passthrough">>;
57
57
  }, "strip", z.ZodTypeAny, {
58
58
  File: {
59
+ Category: string | null;
59
60
  ID: string;
60
61
  Name: string;
62
+ Description: string | null;
61
63
  Status: string;
64
+ CategoryID: string | null;
65
+ ContentType: string | null;
62
66
  ProviderID: string;
67
+ ProviderKey: string | null;
63
68
  Provider: string;
64
- Category?: string | null | undefined;
65
- Description?: string | null | undefined;
66
- CategoryID?: string | null | undefined;
67
- ContentType?: string | null | undefined;
68
- ProviderKey?: string | null | undefined;
69
69
  } & {
70
70
  [k: string]: unknown;
71
71
  };
@@ -73,16 +73,16 @@ declare const FileUploadMutationSchema: z.ZodObject<{
73
73
  UploadUrl: string;
74
74
  }, {
75
75
  File: {
76
+ Category: string | null;
76
77
  ID: string;
77
78
  Name: string;
79
+ Description: string | null;
78
80
  Status: string;
81
+ CategoryID: string | null;
82
+ ContentType: string | null;
79
83
  ProviderID: string;
84
+ ProviderKey: string | null;
80
85
  Provider: string;
81
- Category?: string | null | undefined;
82
- Description?: string | null | undefined;
83
- CategoryID?: string | null | undefined;
84
- ContentType?: string | null | undefined;
85
- ProviderKey?: string | null | undefined;
86
86
  } & {
87
87
  [k: string]: unknown;
88
88
  };
@@ -92,16 +92,16 @@ declare const FileUploadMutationSchema: z.ZodObject<{
92
92
  }, "strip", z.ZodTypeAny, {
93
93
  CreateFile: {
94
94
  File: {
95
+ Category: string | null;
95
96
  ID: string;
96
97
  Name: string;
98
+ Description: string | null;
97
99
  Status: string;
100
+ CategoryID: string | null;
101
+ ContentType: string | null;
98
102
  ProviderID: string;
103
+ ProviderKey: string | null;
99
104
  Provider: string;
100
- Category?: string | null | undefined;
101
- Description?: string | null | undefined;
102
- CategoryID?: string | null | undefined;
103
- ContentType?: string | null | undefined;
104
- ProviderKey?: string | null | undefined;
105
105
  } & {
106
106
  [k: string]: unknown;
107
107
  };
@@ -111,16 +111,16 @@ declare const FileUploadMutationSchema: z.ZodObject<{
111
111
  }, {
112
112
  CreateFile: {
113
113
  File: {
114
+ Category: string | null;
114
115
  ID: string;
115
116
  Name: string;
117
+ Description: string | null;
116
118
  Status: string;
119
+ CategoryID: string | null;
120
+ ContentType: string | null;
117
121
  ProviderID: string;
122
+ ProviderKey: string | null;
118
123
  Provider: string;
119
- Category?: string | null | undefined;
120
- Description?: string | null | undefined;
121
- CategoryID?: string | null | undefined;
122
- ContentType?: string | null | undefined;
123
- ProviderKey?: string | null | undefined;
124
124
  } & {
125
125
  [k: string]: unknown;
126
126
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/ng-file-storage",
3
- "version": "2.30.0",
3
+ "version": "2.32.0",
4
4
  "description": "MemberJunction: Angular components for managing files, and related components.",
5
5
  "main": "./dist/public-api.js",
6
6
  "typings": "./dist/public-api.d.ts",
@@ -26,12 +26,12 @@
26
26
  "@angular/router": "18.0.2"
27
27
  },
28
28
  "dependencies": {
29
- "@memberjunction/core": "2.30.0",
30
- "@memberjunction/core-entities": "2.30.0",
31
- "@memberjunction/global": "2.30.0",
32
- "@memberjunction/graphql-dataprovider": "2.30.0",
33
- "@memberjunction/ng-container-directives": "2.30.0",
34
- "@memberjunction/ng-shared": "2.30.0",
29
+ "@memberjunction/core": "2.32.0",
30
+ "@memberjunction/core-entities": "2.32.0",
31
+ "@memberjunction/global": "2.32.0",
32
+ "@memberjunction/graphql-dataprovider": "2.32.0",
33
+ "@memberjunction/ng-container-directives": "2.32.0",
34
+ "@memberjunction/ng-shared": "2.32.0",
35
35
  "@progress/kendo-angular-buttons": "16.2.0",
36
36
  "@progress/kendo-angular-dialog": "16.2.0",
37
37
  "@progress/kendo-angular-dropdowns": "16.2.0",