@axinom/mosaic-messages 0.47.0-rc.0 → 0.47.0-rc.10
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/dist/generated/schemas/payloads/admin/commands/execute-async-wrapper-step-command.json +15 -0
- package/dist/generated/schemas/payloads/admin/commands/index.d.ts +13 -0
- package/dist/generated/schemas/payloads/admin/commands/index.d.ts.map +1 -1
- package/dist/generated/schemas/payloads/admin/events/environment-created-event.json +15 -0
- package/dist/generated/schemas/payloads/admin/events/index.d.ts +13 -0
- package/dist/generated/schemas/payloads/admin/events/index.d.ts.map +1 -1
- package/dist/generated/schemas/payloads/id/commands/id-service-enable-command.json +15 -0
- package/dist/generated/schemas/payloads/id/commands/index.d.ts +13 -0
- package/dist/generated/schemas/payloads/id/commands/index.d.ts.map +1 -1
- package/dist/generated/schemas/payloads/video/commands/ensure-video-exists-command.json +12 -0
- package/dist/generated/schemas/payloads/video/commands/index.d.ts +12 -0
- package/dist/generated/schemas/payloads/video/commands/index.d.ts.map +1 -1
- package/dist/generated/types/payloads/admin/types/axinom-idp.d.ts +10 -0
- package/dist/generated/types/payloads/admin/types/axinom-idp.d.ts.map +1 -0
- package/dist/generated/types/payloads/admin/types/axinom-idp.js +3 -0
- package/dist/generated/types/payloads/admin/types/axinom-idp.js.map +1 -0
- package/dist/generated/types/payloads/admin/types/idp-configurations.d.ts +5 -0
- package/dist/generated/types/payloads/admin/types/idp-configurations.d.ts.map +1 -1
- package/dist/generated/types/payloads/admin/types/index.d.ts +1 -0
- package/dist/generated/types/payloads/admin/types/index.d.ts.map +1 -1
- package/dist/generated/types/payloads/admin/types/index.js +1 -0
- package/dist/generated/types/payloads/admin/types/index.js.map +1 -1
- package/dist/generated/types/payloads/id/types/ax-idp-configurations.d.ts +5 -0
- package/dist/generated/types/payloads/id/types/ax-idp-configurations.d.ts.map +1 -1
- package/dist/generated/types/payloads/id/types/axinom-idp-configuration.d.ts +10 -0
- package/dist/generated/types/payloads/id/types/axinom-idp-configuration.d.ts.map +1 -0
- package/dist/generated/types/payloads/id/types/axinom-idp-configuration.js +3 -0
- package/dist/generated/types/payloads/id/types/axinom-idp-configuration.js.map +1 -0
- package/dist/generated/types/payloads/id/types/index.d.ts +1 -0
- package/dist/generated/types/payloads/id/types/index.d.ts.map +1 -1
- package/dist/generated/types/payloads/id/types/index.js +1 -0
- package/dist/generated/types/payloads/id/types/index.js.map +1 -1
- package/dist/generated/types/payloads/video/commands/ensure-video-exists-command.d.ts +4 -0
- package/dist/generated/types/payloads/video/commands/ensure-video-exists-command.d.ts.map +1 -1
- package/package.json +6 -6
- package/src/generated/schemas/payloads/admin/commands/execute-async-wrapper-step-command.json +15 -0
- package/src/generated/schemas/payloads/admin/events/environment-created-event.json +15 -0
- package/src/generated/schemas/payloads/id/commands/id-service-enable-command.json +15 -0
- package/src/generated/schemas/payloads/video/commands/ensure-video-exists-command.json +12 -0
- package/src/generated/types/payloads/admin/types/axinom-idp.ts +9 -0
- package/src/generated/types/payloads/admin/types/idp-configurations.ts +5 -0
- package/src/generated/types/payloads/admin/types/index.ts +1 -0
- package/src/generated/types/payloads/id/types/ax-idp-configurations.ts +5 -0
- package/src/generated/types/payloads/id/types/axinom-idp-configuration.ts +9 -0
- package/src/generated/types/payloads/id/types/index.ts +1 -0
- package/src/generated/types/payloads/video/commands/ensure-video-exists-command.ts +4 -0
package/dist/generated/schemas/payloads/admin/commands/execute-async-wrapper-step-command.json
CHANGED
|
@@ -135,6 +135,21 @@
|
|
|
135
135
|
"client_secret"
|
|
136
136
|
]
|
|
137
137
|
}
|
|
138
|
+
},
|
|
139
|
+
"axinom": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"title": "axinom_idp",
|
|
142
|
+
"description": "IDP configuration for Axinom",
|
|
143
|
+
"required": [
|
|
144
|
+
"enabled"
|
|
145
|
+
],
|
|
146
|
+
"additionalProperties": false,
|
|
147
|
+
"properties": {
|
|
148
|
+
"enabled": {
|
|
149
|
+
"type": "boolean",
|
|
150
|
+
"description": "Status of the IDP"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
138
153
|
}
|
|
139
154
|
}
|
|
140
155
|
}
|
|
@@ -123,6 +123,19 @@ export declare const ExecuteAsyncWrapperStepCommandSchema: {
|
|
|
123
123
|
required: string[];
|
|
124
124
|
};
|
|
125
125
|
};
|
|
126
|
+
axinom: {
|
|
127
|
+
type: string;
|
|
128
|
+
title: string;
|
|
129
|
+
description: string;
|
|
130
|
+
required: string[];
|
|
131
|
+
additionalProperties: boolean;
|
|
132
|
+
properties: {
|
|
133
|
+
enabled: {
|
|
134
|
+
type: string;
|
|
135
|
+
description: string;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
};
|
|
126
139
|
};
|
|
127
140
|
};
|
|
128
141
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/admin/commands/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oCAAoC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/admin/commands/index.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAiC,CAAC"}
|
|
@@ -135,6 +135,21 @@
|
|
|
135
135
|
"client_secret"
|
|
136
136
|
]
|
|
137
137
|
}
|
|
138
|
+
},
|
|
139
|
+
"axinom": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"title": "axinom_idp",
|
|
142
|
+
"description": "IDP configuration for Axinom",
|
|
143
|
+
"required": [
|
|
144
|
+
"enabled"
|
|
145
|
+
],
|
|
146
|
+
"additionalProperties": false,
|
|
147
|
+
"properties": {
|
|
148
|
+
"enabled": {
|
|
149
|
+
"type": "boolean",
|
|
150
|
+
"description": "Status of the IDP"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
138
153
|
}
|
|
139
154
|
}
|
|
140
155
|
}
|
|
@@ -123,6 +123,19 @@ export declare const EnvironmentCreatedEventSchema: {
|
|
|
123
123
|
required: string[];
|
|
124
124
|
};
|
|
125
125
|
};
|
|
126
|
+
axinom: {
|
|
127
|
+
type: string;
|
|
128
|
+
title: string;
|
|
129
|
+
description: string;
|
|
130
|
+
required: string[];
|
|
131
|
+
additionalProperties: boolean;
|
|
132
|
+
properties: {
|
|
133
|
+
enabled: {
|
|
134
|
+
type: string;
|
|
135
|
+
description: string;
|
|
136
|
+
};
|
|
137
|
+
};
|
|
138
|
+
};
|
|
126
139
|
};
|
|
127
140
|
};
|
|
128
141
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/admin/events/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,6BAA6B
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/admin/events/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA0B,CAAC;AACrE,eAAO,MAAM,wCAAwC;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAqC,CAAC;AAC3F,eAAO,MAAM,0CAA0C;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAuC,CAAC"}
|
|
@@ -104,6 +104,21 @@
|
|
|
104
104
|
"client_secret"
|
|
105
105
|
]
|
|
106
106
|
}
|
|
107
|
+
},
|
|
108
|
+
"axinom": {
|
|
109
|
+
"type": "object",
|
|
110
|
+
"title": "axinom_idp_configuration",
|
|
111
|
+
"description": "IDP configuration for Axinom",
|
|
112
|
+
"required": [
|
|
113
|
+
"enabled"
|
|
114
|
+
],
|
|
115
|
+
"additionalProperties": false,
|
|
116
|
+
"properties": {
|
|
117
|
+
"enabled": {
|
|
118
|
+
"type": "boolean",
|
|
119
|
+
"description": "Status of the IDP"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
107
122
|
}
|
|
108
123
|
}
|
|
109
124
|
}
|
|
@@ -171,6 +171,19 @@ export declare const IdServiceEnableCommandSchema: {
|
|
|
171
171
|
required: string[];
|
|
172
172
|
};
|
|
173
173
|
};
|
|
174
|
+
axinom: {
|
|
175
|
+
type: string;
|
|
176
|
+
title: string;
|
|
177
|
+
description: string;
|
|
178
|
+
required: string[];
|
|
179
|
+
additionalProperties: boolean;
|
|
180
|
+
properties: {
|
|
181
|
+
enabled: {
|
|
182
|
+
type: string;
|
|
183
|
+
description: string;
|
|
184
|
+
};
|
|
185
|
+
};
|
|
186
|
+
};
|
|
174
187
|
};
|
|
175
188
|
};
|
|
176
189
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/id/commands/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;CAA8B,CAAC;AAC7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;CAAoB,CAAC;AACzD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;CAAwB,CAAC;AACjE,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;CAA0B,CAAC;AACrE,eAAO,MAAM,4BAA4B
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/id/commands/index.ts"],"names":[],"mappings":"AAOA,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;CAA8B,CAAC;AAC7E,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;CAAoB,CAAC;AACzD,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;CAAwB,CAAC;AACjE,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;CAA0B,CAAC;AACrE,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAyB,CAAC;AACnE,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAAgC,CAAC"}
|
|
@@ -21,6 +21,18 @@
|
|
|
21
21
|
"pattern": "^$|.*\\S.*",
|
|
22
22
|
"description": "The string has a minimum length of one character and it cannot consist of only whitespace characters."
|
|
23
23
|
},
|
|
24
|
+
"watermark_profiles": {
|
|
25
|
+
"type": "array",
|
|
26
|
+
"description": "An array of watermark profiles that the encoding process will use to watermark the video.",
|
|
27
|
+
"uniqueItems": true,
|
|
28
|
+
"additionalItems": false,
|
|
29
|
+
"items": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"minLength": 1,
|
|
32
|
+
"pattern": "^$|.*\\S.*",
|
|
33
|
+
"description": "The string has a minimum length of one character and it cannot consist of only whitespace characters."
|
|
34
|
+
}
|
|
35
|
+
},
|
|
24
36
|
"tags": {
|
|
25
37
|
"type": "array",
|
|
26
38
|
"description": "An array of tags for video.",
|
|
@@ -104,6 +104,18 @@ export declare const EnsureVideoExistsCommandSchema: {
|
|
|
104
104
|
pattern: string;
|
|
105
105
|
description: string;
|
|
106
106
|
};
|
|
107
|
+
watermark_profiles: {
|
|
108
|
+
type: string;
|
|
109
|
+
description: string;
|
|
110
|
+
uniqueItems: boolean;
|
|
111
|
+
additionalItems: boolean;
|
|
112
|
+
items: {
|
|
113
|
+
type: string;
|
|
114
|
+
minLength: number;
|
|
115
|
+
pattern: string;
|
|
116
|
+
description: string;
|
|
117
|
+
};
|
|
118
|
+
};
|
|
107
119
|
tags: {
|
|
108
120
|
type: string;
|
|
109
121
|
description: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/video/commands/index.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;CAAuB,CAAC;AAC/D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8B,CAAC;AAC7E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;CAAqB,CAAC;AAC3D,eAAO,MAAM,8BAA8B
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/schemas/payloads/video/commands/index.ts"],"names":[],"mappings":"AAUA,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;CAAuB,CAAC;AAC/D,eAAO,MAAM,iCAAiC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA8B,CAAC;AAC7E,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;CAAqB,CAAC;AAC3D,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA2B,CAAC;AACvE,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAA2B,CAAC;AACvE,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;CAA6B,CAAC;AAC3E,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;CAAyB,CAAC;AACnE,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;CAA6B,CAAC;AAC3E,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;;;;;;CAA4B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axinom-idp.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/axinom-idp.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;CAClB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axinom-idp.js","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/axinom-idp.ts"],"names":[],"mappings":""}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AxinomIdp } from './axinom-idp';
|
|
1
2
|
import { Google } from './google';
|
|
2
3
|
/**
|
|
3
4
|
* Configuration details for ID Providers
|
|
@@ -7,5 +8,9 @@ export interface IdpConfigurations {
|
|
|
7
8
|
* IDP configuration for Google
|
|
8
9
|
*/
|
|
9
10
|
google?: Google;
|
|
11
|
+
/**
|
|
12
|
+
* IDP configuration for Axinom
|
|
13
|
+
*/
|
|
14
|
+
axinom?: AxinomIdp;
|
|
10
15
|
}
|
|
11
16
|
//# sourceMappingURL=idp-configurations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"idp-configurations.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/idp-configurations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"idp-configurations.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/idp-configurations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AACzC,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAClC;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,SAAS,CAAC;CACpB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,6BAA6B,CAAC;AAC5C,cAAc,UAAU,CAAC;AACzB,cAAc,cAAc,CAAC;AAC7B,cAAc,sBAAsB,CAAC;AACrC,cAAc,kBAAkB,CAAC;AACjC,cAAc,QAAQ,CAAC"}
|
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./ax-auth-service"), exports);
|
|
18
|
+
__exportStar(require("./axinom-idp"), exports);
|
|
18
19
|
__exportStar(require("./environment-init-defaults"), exports);
|
|
19
20
|
__exportStar(require("./google"), exports);
|
|
20
21
|
__exportStar(require("./id-service"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,8DAA4C;AAC5C,2CAAyB;AACzB,+CAA6B;AAC7B,uDAAqC;AACrC,mDAAiC;AACjC,yCAAuB"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/admin/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,oDAAkC;AAClC,+CAA6B;AAC7B,8DAA4C;AAC5C,2CAAyB;AACzB,+CAA6B;AAC7B,uDAAqC;AACrC,mDAAiC;AACjC,yCAAuB"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AxinomIdpConfiguration } from './axinom-idp-configuration';
|
|
1
2
|
import { GoogleConfiguration } from './google-configuration';
|
|
2
3
|
/**
|
|
3
4
|
* Configuration details for ID Providers
|
|
@@ -7,5 +8,9 @@ export interface AxIdpConfigurations {
|
|
|
7
8
|
* IDP configuration for Google
|
|
8
9
|
*/
|
|
9
10
|
google?: GoogleConfiguration;
|
|
11
|
+
/**
|
|
12
|
+
* IDP configuration for Axinom
|
|
13
|
+
*/
|
|
14
|
+
axinom?: AxinomIdpConfiguration;
|
|
10
15
|
}
|
|
11
16
|
//# sourceMappingURL=ax-idp-configurations.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ax-idp-configurations.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/ax-idp-configurations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"ax-idp-configurations.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/ax-idp-configurations.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,sBAAsB,EAAE,MAAM,4BAA4B,CAAC;AACpE,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,MAAM,CAAC,EAAE,mBAAmB,CAAC;IAC7B;;OAEG;IACH,MAAM,CAAC,EAAE,sBAAsB,CAAC;CACjC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axinom-idp-configuration.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/axinom-idp-configuration.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,sBAAsB;IACrC;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;CAClB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"axinom-idp-configuration.js","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/axinom-idp-configuration.ts"],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2CAA2C,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,iBAAiB,CAAC;AAChC,cAAc,yBAAyB,CAAC;AACxC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,wBAAwB,CAAC;AACvC,cAAc,cAAc,CAAC;AAC7B,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2CAA2C,CAAC"}
|
|
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./ax-id-service"), exports);
|
|
18
18
|
__exportStar(require("./ax-idp-configurations"), exports);
|
|
19
|
+
__exportStar(require("./axinom-idp-configuration"), exports);
|
|
19
20
|
__exportStar(require("./google-configuration"), exports);
|
|
20
21
|
__exportStar(require("./permission"), exports);
|
|
21
22
|
__exportStar(require("./user-role-assignment-changed"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,0DAAwC;AACxC,yDAAuC;AACvC,+CAA6B;AAC7B,iEAA+C;AAC/C,4EAA0D"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/id/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAAgC;AAChC,0DAAwC;AACxC,6DAA2C;AAC3C,yDAAuC;AACvC,+CAA6B;AAC7B,iEAA+C;AAC/C,4EAA0D"}
|
|
@@ -10,6 +10,10 @@ export interface EnsureVideoExistsCommand {
|
|
|
10
10
|
* The string has a minimum length of one character and it cannot consist of only whitespace characters.
|
|
11
11
|
*/
|
|
12
12
|
video_profile: string;
|
|
13
|
+
/**
|
|
14
|
+
* An array of watermark profiles that the encoding process will use to watermark the video.
|
|
15
|
+
*/
|
|
16
|
+
watermark_profiles?: string[];
|
|
13
17
|
/**
|
|
14
18
|
* An array of tags for video.
|
|
15
19
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ensure-video-exists-command.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/video/commands/ensure-video-exists-command.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACjB"}
|
|
1
|
+
{"version":3,"file":"ensure-video-exists-command.d.ts","sourceRoot":"","sources":["../../../../../../src/generated/types/payloads/video/commands/ensure-video-exists-command.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,wBAAwB;IACvC;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;IACtB;;OAEG;IACH,kBAAkB,CAAC,EAAE,MAAM,EAAE,CAAC;IAC9B;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,EAAE,CAAC;CACjB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axinom/mosaic-messages",
|
|
3
|
-
"version": "0.47.0-rc.
|
|
3
|
+
"version": "0.47.0-rc.10",
|
|
4
4
|
"description": "Shared types for Axinom Mosaic service messages",
|
|
5
5
|
"author": "Axinom",
|
|
6
6
|
"license": "PROPRIETARY",
|
|
@@ -19,18 +19,18 @@
|
|
|
19
19
|
"lint:schema": "yarn mosaic msg-codegen -i schemas --lint",
|
|
20
20
|
"clean": "rimraf dist",
|
|
21
21
|
"clean:generated": "rimraf src/generated",
|
|
22
|
-
"codegen": "yarn lint:schema && yarn clean:generated && yarn mosaic msg-codegen -i schemas -o src/generated",
|
|
22
|
+
"codegen": "yarn lint:schema && yarn clean:generated && yarn mosaic msg-codegen -i schemas -o src/generated && yarn build",
|
|
23
23
|
"codegen:watch": "watch 'yarn codegen' schemas/",
|
|
24
24
|
"msg-diff": "yarn mosaic msg-diff -i schemas",
|
|
25
|
-
"build": "yarn clean && yarn
|
|
25
|
+
"build": "yarn clean && yarn build:compile",
|
|
26
26
|
"build:ci": "yarn workspaces focus && yarn build",
|
|
27
27
|
"build:compile": "tsc",
|
|
28
28
|
"build:compile:watch": "tsc -w",
|
|
29
29
|
"dev": "concurrently --names \"codegen,tsc\" \"yarn codegen:watch\" \"yarn build:compile:watch\""
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@axinom/mosaic-cli": "^0.37.0-rc.
|
|
33
|
-
"@axinom/mosaic-message-bus-abstractions": "^0.18.0-rc.
|
|
32
|
+
"@axinom/mosaic-cli": "^0.37.0-rc.10",
|
|
33
|
+
"@axinom/mosaic-message-bus-abstractions": "^0.18.0-rc.10",
|
|
34
34
|
"@types/glob": "^7.1.3",
|
|
35
35
|
"@types/node": "^18.11.18",
|
|
36
36
|
"concurrently": "^5.3.0",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
45
|
},
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "53f2fcee53ecd1f887c10bdaa1e7084f1820f6dc"
|
|
47
47
|
}
|
package/src/generated/schemas/payloads/admin/commands/execute-async-wrapper-step-command.json
CHANGED
|
@@ -135,6 +135,21 @@
|
|
|
135
135
|
"client_secret"
|
|
136
136
|
]
|
|
137
137
|
}
|
|
138
|
+
},
|
|
139
|
+
"axinom": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"title": "axinom_idp",
|
|
142
|
+
"description": "IDP configuration for Axinom",
|
|
143
|
+
"required": [
|
|
144
|
+
"enabled"
|
|
145
|
+
],
|
|
146
|
+
"additionalProperties": false,
|
|
147
|
+
"properties": {
|
|
148
|
+
"enabled": {
|
|
149
|
+
"type": "boolean",
|
|
150
|
+
"description": "Status of the IDP"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
138
153
|
}
|
|
139
154
|
}
|
|
140
155
|
}
|
|
@@ -135,6 +135,21 @@
|
|
|
135
135
|
"client_secret"
|
|
136
136
|
]
|
|
137
137
|
}
|
|
138
|
+
},
|
|
139
|
+
"axinom": {
|
|
140
|
+
"type": "object",
|
|
141
|
+
"title": "axinom_idp",
|
|
142
|
+
"description": "IDP configuration for Axinom",
|
|
143
|
+
"required": [
|
|
144
|
+
"enabled"
|
|
145
|
+
],
|
|
146
|
+
"additionalProperties": false,
|
|
147
|
+
"properties": {
|
|
148
|
+
"enabled": {
|
|
149
|
+
"type": "boolean",
|
|
150
|
+
"description": "Status of the IDP"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
138
153
|
}
|
|
139
154
|
}
|
|
140
155
|
}
|
|
@@ -104,6 +104,21 @@
|
|
|
104
104
|
"client_secret"
|
|
105
105
|
]
|
|
106
106
|
}
|
|
107
|
+
},
|
|
108
|
+
"axinom": {
|
|
109
|
+
"type": "object",
|
|
110
|
+
"title": "axinom_idp_configuration",
|
|
111
|
+
"description": "IDP configuration for Axinom",
|
|
112
|
+
"required": [
|
|
113
|
+
"enabled"
|
|
114
|
+
],
|
|
115
|
+
"additionalProperties": false,
|
|
116
|
+
"properties": {
|
|
117
|
+
"enabled": {
|
|
118
|
+
"type": "boolean",
|
|
119
|
+
"description": "Status of the IDP"
|
|
120
|
+
}
|
|
121
|
+
}
|
|
107
122
|
}
|
|
108
123
|
}
|
|
109
124
|
}
|
|
@@ -21,6 +21,18 @@
|
|
|
21
21
|
"pattern": "^$|.*\\S.*",
|
|
22
22
|
"description": "The string has a minimum length of one character and it cannot consist of only whitespace characters."
|
|
23
23
|
},
|
|
24
|
+
"watermark_profiles": {
|
|
25
|
+
"type": "array",
|
|
26
|
+
"description": "An array of watermark profiles that the encoding process will use to watermark the video.",
|
|
27
|
+
"uniqueItems": true,
|
|
28
|
+
"additionalItems": false,
|
|
29
|
+
"items": {
|
|
30
|
+
"type": "string",
|
|
31
|
+
"minLength": 1,
|
|
32
|
+
"pattern": "^$|.*\\S.*",
|
|
33
|
+
"description": "The string has a minimum length of one character and it cannot consist of only whitespace characters."
|
|
34
|
+
}
|
|
35
|
+
},
|
|
24
36
|
"tags": {
|
|
25
37
|
"type": "array",
|
|
26
38
|
"description": "An array of tags for video.",
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AxinomIdp } from './axinom-idp';
|
|
1
2
|
import { Google } from './google';
|
|
2
3
|
/**
|
|
3
4
|
* Configuration details for ID Providers
|
|
@@ -7,4 +8,8 @@ export interface IdpConfigurations {
|
|
|
7
8
|
* IDP configuration for Google
|
|
8
9
|
*/
|
|
9
10
|
google?: Google;
|
|
11
|
+
/**
|
|
12
|
+
* IDP configuration for Axinom
|
|
13
|
+
*/
|
|
14
|
+
axinom?: AxinomIdp;
|
|
10
15
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AxinomIdpConfiguration } from './axinom-idp-configuration';
|
|
1
2
|
import { GoogleConfiguration } from './google-configuration';
|
|
2
3
|
/**
|
|
3
4
|
* Configuration details for ID Providers
|
|
@@ -7,4 +8,8 @@ export interface AxIdpConfigurations {
|
|
|
7
8
|
* IDP configuration for Google
|
|
8
9
|
*/
|
|
9
10
|
google?: GoogleConfiguration;
|
|
11
|
+
/**
|
|
12
|
+
* IDP configuration for Axinom
|
|
13
|
+
*/
|
|
14
|
+
axinom?: AxinomIdpConfiguration;
|
|
10
15
|
}
|
|
@@ -10,6 +10,10 @@ export interface EnsureVideoExistsCommand {
|
|
|
10
10
|
* The string has a minimum length of one character and it cannot consist of only whitespace characters.
|
|
11
11
|
*/
|
|
12
12
|
video_profile: string;
|
|
13
|
+
/**
|
|
14
|
+
* An array of watermark profiles that the encoding process will use to watermark the video.
|
|
15
|
+
*/
|
|
16
|
+
watermark_profiles?: string[];
|
|
13
17
|
/**
|
|
14
18
|
* An array of tags for video.
|
|
15
19
|
*/
|